PEP8: fix E302: expected 2 blank lines, found 1
[metze/samba/wip.git] / python / samba / netcmd / __init__.py
index cd1a23735501f6ce1e0d9b1a814c1ec48c6cd423..6e133591155059b994aae0f65ce92062f5559dc7 100644 (file)
@@ -23,10 +23,13 @@ from ldb import LdbError
 import sys, traceback
 import textwrap
 
+
 class Option(optparse.Option):
     pass
 
 # This help formatter does text wrapping and preserves newlines
+
+
 class PlainHelpFormatter(optparse.IndentedHelpFormatter):
     def format_description(self, description=""):
         desc_width = self.width - self.current_indent
@@ -47,6 +50,7 @@ class PlainHelpFormatter(optparse.IndentedHelpFormatter):
         else:
             return ""
 
+
 class Command(object):
     """A samba-tool command."""