PEP8: fix E302: expected 2 blank lines, found 1
[samba.git] / python / samba / tests / __init__.py
index bd17a870d66780dfd452e93d22f4338b61ecd92a..75f5e98ca068f14d7fcc0dbab0f776a657f1400e 100644 (file)
@@ -58,6 +58,7 @@ except ImportError:
 
 HEXDUMP_FILTER = bytearray([x if ((len(repr(chr(x))) == 3) and (x < 127)) else ord('.') for x in range(256)])
 
+
 class TestCase(unittest.TestCase):
     """A Samba test case."""
 
@@ -320,6 +321,7 @@ def env_get_var_value(var_name, allow_missing=False):
 
 cmdline_credentials = None
 
+
 class RpcInterfaceTestCase(TestCase):
     """DCE/RPC Test case."""
 
@@ -359,6 +361,7 @@ class BlackboxProcessError(Exception):
 
         return s
 
+
 class BlackboxTestCase(TestCaseInTempDir):
     """Base test case for blackbox tests."""
 
@@ -490,6 +493,7 @@ def delete_force(samdb, dn, **kwargs):
         (num, errstr) = error.args
         assert num == ldb.ERR_NO_SUCH_OBJECT, "ldb.delete() failed: %s" % errstr
 
+
 def create_test_ou(samdb, name):
     """Creates a unique OU for the test"""