Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -29,5 +29,8 @@ def main():
|
|
| 29 |
except Exception as e:
|
| 30 |
print(f"Error: {e}")
|
| 31 |
|
|
|
|
|
|
|
|
|
|
| 32 |
if __name__ == "__main__":
|
| 33 |
-
main()
|
|
|
|
| 29 |
except Exception as e:
|
| 30 |
print(f"Error: {e}")
|
| 31 |
|
| 32 |
+
# Add an `app` attribute to the module
|
| 33 |
+
app = main
|
| 34 |
+
|
| 35 |
if __name__ == "__main__":
|
| 36 |
+
main()
|