Update app.py
Browse files
app.py
CHANGED
|
@@ -1,3 +1,7 @@
|
|
| 1 |
"""Hugging Face Spaces entrypoint for the TWL concordancer."""
|
| 2 |
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
"""Hugging Face Spaces entrypoint for the TWL concordancer."""
|
| 2 |
|
| 3 |
+
from pathlib import Path
|
| 4 |
+
import runpy
|
| 5 |
+
|
| 6 |
+
|
| 7 |
+
runpy.run_path(str(Path(__file__).with_name("concordancer.py")), run_name="__main__")
|