0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-06-13 16:18:56 +02:00

Remove unused 'context' variables to appease pyflakes

This commit is contained in:
Mark Haines 2014-10-30 11:15:39 +00:00
parent 7c06399512
commit 7a756e5d9d

View file

@ -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__':