mirror of
https://github.com/dnet/pySSTV.git
synced 2025-12-06 07:12:00 +01:00
5 lines
120 B
Python
5 lines
120 B
Python
from os import path
|
|
|
|
def get_asset_filename(filename):
|
|
return path.join(path.dirname(__file__), 'assets', filename)
|