Spaces:
Runtime error
Runtime error
File size: 234 Bytes
7cc8562 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | 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()
|