PEP8: fix E303: too many blank lines (2)
[samba.git] / python / samba / graph.py
index 538c9de750f8b3c9cf21c3b8dab4172e4f2265a1..0a0aecd66315c3450656faa8e3c26b5c66c4be97 100644 (file)
@@ -135,10 +135,6 @@ def shorten_vertex_names(vertices, suffix=',...', aggressive=False):
     return vmap, replacements
 
 
-
-
-
-
 def compile_graph_key(key_items, nodes_above=[], elisions=None,
                       prefix='key_', width=2):
     """Generate a dot file snippet that acts as a legend for a graph.
@@ -573,7 +569,6 @@ def distance_matrix(vertices, edges,
         vertices = [vmap[x] for x in vertices]
         edges = [(vmap[a], vmap[b]) for a, b in edges]
 
-
     vlen = max(6, max(len(v) for v in vertices))
 
     # first, the key for the columns