Commit 51af284d authored by Vitja Makarov's avatar Vitja Makarov

Add extra empty lines to follow PEP8

parent 22fa595c
...@@ -280,6 +280,7 @@ class GVContext(object): ...@@ -280,6 +280,7 @@ class GVContext(object):
def escape(self, text): def escape(self, text):
return text.replace('"', '\\"').replace('\n', '\\n') return text.replace('"', '\\"').replace('\n', '\\n')
class GV(object): class GV(object):
"""Graphviz DOT renderer.""" """Graphviz DOT renderer."""
...@@ -308,6 +309,7 @@ class GV(object): ...@@ -308,6 +309,7 @@ class GV(object):
fp.write(' %s -> %s;\n' % (pid, ctx.nodeid(child))) fp.write(' %s -> %s;\n' % (pid, ctx.nodeid(child)))
fp.write(' }\n') fp.write(' }\n')
class MessageCollection(list): class MessageCollection(list):
"""Collect error/warnings messages first then sort""" """Collect error/warnings messages first then sort"""
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment