Skip to content

Commit

Permalink
ruff double quotes error corrected
Browse files Browse the repository at this point in the history
  • Loading branch information
sowmyasris committed Jul 31, 2024
1 parent 5b21200 commit 9961836
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions fedn/network/api/gunicorn_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def load(self):
def run_gunicorn(app, workers=4):
workers=os.cpu_count()
options = {
'bind': '127.0.0.1:8000', # Specify the bind address and port here
'workers': workers,
"bind": "127.0.0.1:8000", # Specify the bind address and port here
"workers": workers,
}
GunicornApp(app, options).run()
GunicornApp(app, options).run()

0 comments on commit 9961836

Please sign in to comment.