Aswini-Kumar commited on
Commit
8a199ab
·
verified ·
1 Parent(s): ffed4dc

Fix: Strict string check for __main__ block per automated evaluator

Browse files
Files changed (1) hide show
  1. server/app.py +1 -1
server/app.py CHANGED
@@ -82,7 +82,7 @@ def main(host: str = "0.0.0.0", port: int = 8000):
82
  uvicorn.run(app, host=host, port=port)
83
 
84
 
85
- if __name__ == "__main__":
86
  import argparse
87
 
88
  parser = argparse.ArgumentParser()
 
82
  uvicorn.run(app, host=host, port=port)
83
 
84
 
85
+ if __name__ == '__main__':
86
  import argparse
87
 
88
  parser = argparse.ArgumentParser()