Skip to content
Snippets Groups Projects
Commit 7a756e5d authored by Mark Haines's avatar Mark Haines
Browse files

Remove unused 'context' variables to appease pyflakes

parent 7c063995
No related branches found
No related tags found
No related merge requests found
......@@ -252,11 +252,11 @@ def setup():
reactor.run()
def run():
with LoggingContext("run") as context:
with LoggingContext("run"):
reactor.run()
def main():
with LoggingContext("main") as context:
with LoggingContext("main"):
setup()
if __name__ == '__main__':
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment