src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Annotations/AnnotationsEnums.py

branch
eric7
changeset 9221
bf71ee032bb4
parent 9209
b99e7fd55fd3
child 9276
e6748a5e24b9
--- a/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Annotations/AnnotationsEnums.py	Wed Jul 13 11:16:20 2022 +0200
+++ b/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Annotations/AnnotationsEnums.py	Wed Jul 13 14:55:47 2022 +0200
@@ -18,16 +18,18 @@
     """
     Class representing the various function types.
     """
+
     PUBLIC = enum.auto()
-    PROTECTED = enum.auto()      # Leading single underscore
-    PRIVATE = enum.auto()        # Leading double underscore
-    SPECIAL = enum.auto()        # Leading & trailing double underscore
+    PROTECTED = enum.auto()  # Leading single underscore
+    PRIVATE = enum.auto()  # Leading double underscore
+    SPECIAL = enum.auto()  # Leading & trailing double underscore
 
 
 class ClassDecoratorType(enum.Enum):
     """
     Class representing the various class method decorators.
     """
+
     CLASSMETHOD = enum.auto()
     STATICMETHOD = enum.auto()
 
@@ -36,6 +38,7 @@
     """
     Class representing the kind of missing type annotation.
     """
+
     POSONLYARGS = enum.auto()
     ARGS = enum.auto()
     VARARG = enum.auto()

eric ide

mercurial