5 lines
94 B
Python
5 lines
94 B
Python
import os
|
|
|
|
|
|
def asset(filename):
|
|
return os.path.join(os.path.dirname(__file__), filename)
|