Spaces:
Runtime error
Runtime error
Commit
·
c26135d
1
Parent(s):
344a276
fix dependencies
Browse files- pyproject.toml +0 -1
- temps/app.py +1 -1
pyproject.toml
CHANGED
@@ -28,7 +28,6 @@ dependencies = [
|
|
28 |
"pathlib",
|
29 |
"astropy",
|
30 |
"gradio",
|
31 |
-
"logging",
|
32 |
]
|
33 |
|
34 |
classifiers = [
|
|
|
28 |
"pathlib",
|
29 |
"astropy",
|
30 |
"gradio",
|
|
|
31 |
]
|
32 |
|
33 |
classifiers = [
|
temps/app.py
CHANGED
@@ -63,7 +63,7 @@ def predict(input_file_path: Path, model_path: Path):
|
|
63 |
|
64 |
|
65 |
# Gradio app
|
66 |
-
def main(args
|
67 |
if args is None:
|
68 |
args = get_args()
|
69 |
|
|
|
63 |
|
64 |
|
65 |
# Gradio app
|
66 |
+
def main(args=None) -> None:
|
67 |
if args is None:
|
68 |
args = get_args()
|
69 |
|