rubentsui commited on
Commit
23eb8b8
·
verified ·
1 Parent(s): 5c5aeee

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -1,3 +1,7 @@
1
  """Hugging Face Spaces entrypoint for the TWL concordancer."""
2
 
3
- import concordancer # noqa: F401
 
 
 
 
 
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__")