diff --git a/soitool/modules/code_table_base.py b/soitool/modules/code_table_base.py
index 10f60c8d8811cdb93fbc13b6c3881218f8b26bbd..9cdff1ed3d297456eb864864791c2310d442eb7d 100644
--- a/soitool/modules/code_table_base.py
+++ b/soitool/modules/code_table_base.py
@@ -46,13 +46,14 @@ class CodeTableBase(ModuleBase, QTableWidget, metaclass=Meta):
         )
         # If parameters are None, launch settings-dialog and generate new table
         if size is None and data is None:
-            # Disabling pylint-error 'Access to member before its definition line'
+            # Disabling pylint-error
+            # 'Access to member before its definition line'
             # because the variable is defined in subclass.
             # pylint: disable=E0203
             if self.start_no_of_codes > self.maximum_no_of_codes:
                 raise ValueError(
-                    "The value of module-constant 'START_NO_OF_CODES' is larger "
-                    "than module-constant 'MAXIMUM_NO_OF_CODES': "
+                    "The value of module-constant 'START_NO_OF_CODES' "
+                    "is larger than module-constant 'MAXIMUM_NO_OF_CODES': "
                     "{} > {}".format(
                         self.start_no_of_codes, self.maximum_no_of_codes
                     )