PEP8: fix E302: expected 2 blank lines, found 1
[samba.git] / python / samba / netcmd / ou.py
index 9fd9d6bc3ffe2459a05fa06fed541d18dd6bc01e..0224701b69e38fb7ca980716e5232a4632d2196b 100644 (file)
@@ -30,6 +30,7 @@ from samba.samdb import SamDB
 from samba import dsdb
 from operator import attrgetter
 
+
 class cmd_rename(Command):
     """Rename an organizational unit.
 
@@ -93,6 +94,7 @@ class cmd_rename(Command):
         self.outf.write('Renamed ou "%s" to "%s"\n' % (full_old_ou_dn,
                                                        full_new_ou_dn))
 
+
 class cmd_move(Command):
     """Move an organizational unit.
 
@@ -160,6 +162,7 @@ class cmd_move(Command):
         self.outf.write('Moved ou "%s" into "%s"\n' %
                         (full_old_ou_dn, full_new_parent_dn))
 
+
 class cmd_create(Command):
     """Create an organizational unit.
 
@@ -209,6 +212,7 @@ class cmd_create(Command):
 
         self.outf.write('Created ou "%s"\n' % full_ou_dn)
 
+
 class cmd_listobjects(Command):
     """List all objects in an organizational unit.
 
@@ -278,6 +282,7 @@ class cmd_listobjects(Command):
             raise CommandError('Failed to list contents of ou "%s"' %
                                full_ou_dn, e)
 
+
 class cmd_list(Command):
     """List all organizational units.
 
@@ -322,6 +327,7 @@ class cmd_list(Command):
                 msg.dn.remove_base_components(len(domain_dn))
             self.outf.write("%s\n" % str(msg.dn))
 
+
 class cmd_delete(Command):
     """Delete an organizational unit.