mariomeissner's picture
update app.py
7cc8562 verified
raw
history blame contribute delete
234 Bytes
from pathlib import Path
import sys
HERE = Path(__file__).resolve().parent
for candidate in (HERE, HERE.parent):
sys.path.insert(0, str(candidate))
from image_to_station_audio import main
if __name__ == "__main__":
main()