]> Frank Brehm's Git Trees - pixelpark/pp-admin-tools.git/commitdiff
Make the linter happy
authorFrank Brehm <frank.brehm@pixelpark.com>
Tue, 6 Feb 2024 09:07:04 +0000 (10:07 +0100)
committerFrank Brehm <frank.brehm@pixelpark.com>
Tue, 6 Feb 2024 09:07:04 +0000 (10:07 +0100)
bin/barracuda-sync
bin/check-ldap-dn-attributes
bin/dns-deploy-zones

index 7812d01b285047c3c90d565d7565704de03cab7d..7bdf0809ef8cb290a08e0cc8f30e8fbfd2817947 100755 (executable)
@@ -1,36 +1,40 @@
 #!/usr/bin/env python3
+"""
+@summary: An application module for the barracuda-sync application object.
 
+@author: Frank Brehm
+@contact: frank.brehm@pixelpark.com
+@copyright: © 2023 by Frank Brehm, Berlin
+"""
 from __future__ import print_function
 
 # Standard modules
+import locale
+import os
 import sys
 
+try:
+    from pathlib import Path
+except ImportError:
+    from pathlib2 import Path
+
 __exp_py_version_major__ = 3
 __min_py_version_minor__ = 6
 
 if sys.version_info[0] != __exp_py_version_major__:
-    print("This script is intended to use with Python {}.".format(
+    print('This script is intended to use with Python {}.'.format(
         __exp_py_version_major__), file=sys.stderr)
-    print("You are using Python: {0}.{1}.{2}-{3}-{4}.".format(
-        *sys.version_info) + "\n", file=sys.stderr)
+    print('You are using Python: {0}.{1}.{2}-{3}-{4}.'.format(
+        *sys.version_info) + '\n', file=sys.stderr)
     sys.exit(1)
 
 if sys.version_info[1] < __min_py_version_minor__:
-    print("A minimal Python version of {maj}.{min} is necessary to execute this script.".format(
+    print('A minimal Python version of {maj}.{min} is necessary to execute this script.'.format(
         maj=__exp_py_version_major__, min=__min_py_version_minor__), file=sys.stderr)
-    print("You are using Python: {0}.{1}.{2}-{3}-{4}.".format(
-        *sys.version_info) + "\n", file=sys.stderr)
+    print('You are using Python: {0}.{1}.{2}-{3}-{4}.'.format(
+        *sys.version_info) + '\n', file=sys.stderr)
     sys.exit(1)
 
-# Standard modules
-import os
-import locale
-
-try:
-    from pathlib import Path
-except ImportError:
-    from pathlib2 import Path
-
 __author__ = 'Frank Brehm <frank.brehm@pixelpark.com>'
 __copyright__ = '(C) 2023 by Frank Brehm, Digitas Pixelpark GmbH, Berlin'
 
@@ -56,7 +60,7 @@ app = BarracudaSyncApp(appname=appname, base_dir=base_dir)
 app.initialized = True
 
 if app.verbose > 2:
-    print("{c}-Object:\n{a}".format(c=app.__class__.__name__, a=app))
+    print('{c}-Object:\n{a}'.format(c=app.__class__.__name__, a=app))
 
 app()
 
index b1eb2220584cf2e2f24b4c390da9008940db26f7..e6eedcac152c01f2b7565f56199f00b4442dec00 100755 (executable)
@@ -1,36 +1,40 @@
 #!/usr/bin/env python3
+"""
+@summary: An application module for checking all DN-like attributes in a LDAP instance.
 
+@author: Frank Brehm
+@contact: frank.brehm@pixelpark.com
+@copyright: © 2023 by Frank Brehm, Berlin
+"""
 from __future__ import print_function
 
 # Standard modules
+import locale
+import os
 import sys
 
+try:
+    from pathlib import Path
+except ImportError:
+    from pathlib2 import Path
+
 __exp_py_version_major__ = 3
 __min_py_version_minor__ = 6
 
 if sys.version_info[0] != __exp_py_version_major__:
-    print("This script is intended to use with Python {}.".format(
+    print('This script is intended to use with Python {}.'.format(
         __exp_py_version_major__), file=sys.stderr)
-    print("You are using Python: {0}.{1}.{2}-{3}-{4}.".format(
-        *sys.version_info) + "\n", file=sys.stderr)
+    print('You are using Python: {0}.{1}.{2}-{3}-{4}.'.format(
+        *sys.version_info) + '\n', file=sys.stderr)
     sys.exit(1)
 
 if sys.version_info[1] < __min_py_version_minor__:
-    print("A minimal Python version of {maj}.{min} is necessary to execute this script.".format(
+    print('A minimal Python version of {maj}.{min} is necessary to execute this script.'.format(
         maj=__exp_py_version_major__, min=__min_py_version_minor__), file=sys.stderr)
-    print("You are using Python: {0}.{1}.{2}-{3}-{4}.".format(
-        *sys.version_info) + "\n", file=sys.stderr)
+    print('You are using Python: {0}.{1}.{2}-{3}-{4}.'.format(
+        *sys.version_info) + '\n', file=sys.stderr)
     sys.exit(1)
 
-# Standard modules
-import os
-import locale
-
-try:
-    from pathlib import Path
-except ImportError:
-    from pathlib2 import Path
-
 __author__ = 'Frank Brehm <frank.brehm@pixelpark.com>'
 __copyright__ = '(C) 2023 by Frank Brehm, Digitas Pixelpark GmbH, Berlin'
 
@@ -56,7 +60,7 @@ app = CheckLdapDnAttributesApplication(appname=appname, base_dir=base_dir)
 app.initialized = True
 
 if app.verbose > 2:
-    print("{c}-Object:\n{a}".format(c=app.__class__.__name__, a=app))
+    print('{c}-Object:\n{a}'.format(c=app.__class__.__name__, a=app))
 
 app()
 
index 98fc0d5059cdd23b8d63ff88bffed4fa4c4c0408..6ba3145d9e1870b6c9ca936454e7a65584e4c255 100755 (executable)
@@ -1,36 +1,40 @@
 #!/usr/bin/env python3
+"""
+@summary: A module for the application class for configuring named.
 
+@author: Frank Brehm
+@contact: frank.brehm@pixelpark.com
+@copyright: © 2023 by Frank Brehm, Berlin
+"""
 from __future__ import print_function
 
 # Standard modules
+import locale
+import os
 import sys
 
+try:
+    from pathlib import Path
+except ImportError:
+    from pathlib2 import Path
+
 __exp_py_version_major__ = 3
 __min_py_version_minor__ = 6
 
 if sys.version_info[0] != __exp_py_version_major__:
-    print("This script is intended to use with Python {}.".format(
+    print('This script is intended to use with Python {}.'.format(
         __exp_py_version_major__), file=sys.stderr)
-    print("You are using Python: {0}.{1}.{2}-{3}-{4}.".format(
-        *sys.version_info) + "\n", file=sys.stderr)
+    print('You are using Python: {0}.{1}.{2}-{3}-{4}.'.format(
+        *sys.version_info) + '\n', file=sys.stderr)
     sys.exit(1)
 
 if sys.version_info[1] < __min_py_version_minor__:
-    print("A minimal Python version of {maj}.{min} is necessary to execute this script.".format(
+    print('A minimal Python version of {maj}.{min} is necessary to execute this script.'.format(
         maj=__exp_py_version_major__, min=__min_py_version_minor__), file=sys.stderr)
-    print("You are using Python: {0}.{1}.{2}-{3}-{4}.".format(
-        *sys.version_info) + "\n", file=sys.stderr)
+    print('You are using Python: {0}.{1}.{2}-{3}-{4}.'.format(
+        *sys.version_info) + '\n', file=sys.stderr)
     sys.exit(1)
 
-# Standard modules
-import os
-import locale
-
-try:
-    from pathlib import Path
-except ImportError:
-    from pathlib2 import Path
-
 # own modules:
 
 my_path = Path(__file__)
@@ -56,7 +60,7 @@ app = PpDeployZonesApp(appname=appname, base_dir=base_dir)
 app.initialized = True
 
 if app.verbose > 2:
-    print("{c}-Object:\n{a}".format(c=app.__class__.__name__, a=app))
+    print('{c}-Object:\n{a}'.format(c=app.__class__.__name__, a=app))
 
 app()