mirror of
https://github.com/dnet/pySSTV.git
synced 2026-04-08 07:43:43 +00:00
4 lines
120 B
Python
4 lines
120 B
Python
from os import path
|
|
|
|
def get_asset_filename(filename):
|
|
return path.join(path.dirname(__file__), 'assets', filename)
|