removed the if "main" block
Browse files
main.py
CHANGED
|
@@ -323,10 +323,10 @@ async def get_redaction_status(request_id: str):
|
|
| 323 |
)
|
| 324 |
|
| 325 |
# ----------------- Run Server -----------------
|
| 326 |
-
if __name__ == "__main__":
|
| 327 |
-
|
| 328 |
-
|
| 329 |
-
|
| 330 |
-
|
| 331 |
-
|
| 332 |
-
|
|
|
|
| 323 |
)
|
| 324 |
|
| 325 |
# ----------------- Run Server -----------------
|
| 326 |
+
# if __name__ == "__main__":
|
| 327 |
+
# uvicorn.run(
|
| 328 |
+
# "main:app",
|
| 329 |
+
# host="localhost",
|
| 330 |
+
# port=2700,
|
| 331 |
+
# reload=False
|
| 332 |
+
# )
|