PEP8: fix E302: expected 2 blank lines, found 1
[nivanova/samba-autobuild/.git] / python / samba / netcmd / forest.py
index 2ab0abd00520fde037dcd03ad695a74f99d00a03..4a5293c0290b99ef6f5644d422ace8dd7e94f21a 100644 (file)
@@ -27,6 +27,7 @@ from samba.netcmd import (
     Option
 )
 
+
 class cmd_forest_show(Command):
     """Display forest settings.
 
@@ -74,6 +75,7 @@ class cmd_forest_show(Command):
             except KeyError:
                 self.outf.write("%s: <NO VALUE>\n" % attr)
 
+
 class cmd_forest_set(Command):
     """Modify forest settings.
 
@@ -129,6 +131,7 @@ class cmd_forest_show_directory_service(cmd_forest_show):
     objectdn = "CN=Directory Service,CN=Windows NT,CN=Services,CN=Configuration"
     attributes = ['dsheuristics']
 
+
 class cmd_forest_set_directory_service_dsheuristics(cmd_forest_set):
     """Set the value of dsheuristics on the Directory Service.
 
@@ -148,6 +151,7 @@ class cmd_forest_set_directory_service_dsheuristics(cmd_forest_set):
     objectdn = "CN=Directory Service,CN=Windows NT,CN=Services,CN=Configuration"
     attribute = 'dsheuristics'
 
+
 class cmd_forest_directory_service(SuperCommand):
     """Forest configuration partition management."""
 
@@ -155,6 +159,7 @@ class cmd_forest_directory_service(SuperCommand):
     subcommands["show"] = cmd_forest_show_directory_service()
     subcommands["dsheuristics"] = cmd_forest_set_directory_service_dsheuristics()
 
+
 class cmd_forest(SuperCommand):
     """Forest management."""