Skip to content

Commit

Permalink
Fixed linter warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
meta-paul committed Mar 12, 2024
1 parent 7e7e24a commit 35a402d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mephisto/abstractions/architects/mock_architect.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ def __server_thread_fn(self):
Main loop for the application
"""
self.running_instance = tornado.ioloop.IOLoop()
http_server = tornado.httpserver.HTTPServer(self, max_buffer_size=1024 ** 3)
http_server = tornado.httpserver.HTTPServer(self, max_buffer_size=1024**3)
http_server.listen(self.port)
self.running_instance.start()
http_server.stop()
Expand Down

0 comments on commit 35a402d

Please sign in to comment.