Fix flake8 E305 errors.

This commit is contained in:
Aaron Tan
2016-11-15 16:32:27 -05:00
parent 831b67ce7f
commit 473ed016de
34 changed files with 45 additions and 1 deletions

View File

@@ -67,6 +67,7 @@ def with_verbosity(f):
return f(*args, **kwargs)
return wrapper
Display.verbose = with_verbosity(Display.verbose)
@@ -89,4 +90,5 @@ def display_with_context(f):
event_context.remove_local(uuid=None)
return wrapper
Display.display = display_with_context(Display.display)

View File

@@ -134,4 +134,5 @@ class EventContext(object):
def dump_end(self, fileobj):
self.dump(fileobj, self.get_end_dict())
event_context = EventContext()