eric6/Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleChecker.py

changeset 7782
976d3b19ba7f
parent 7639
422fd05e9c91
child 7784
3257703e10c5
diff -r 607a6098cb44 -r 976d3b19ba7f eric6/Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleChecker.py
--- a/eric6/Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleChecker.py	Mon Oct 12 19:28:42 2020 +0200
+++ b/eric6/Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleChecker.py	Mon Oct 12 19:54:03 2020 +0200
@@ -20,7 +20,7 @@
 
 from DocStyleChecker import DocStyleChecker
 from MiscellaneousChecker import MiscellaneousChecker
-from ComplexityChecker import ComplexityChecker
+from Complexity.ComplexityChecker import ComplexityChecker
 from Security.SecurityChecker import SecurityChecker
 
 
@@ -418,7 +418,7 @@
             # check function annotations
             if sys.version_info >= (3, 5, 0):
                 # annotations are supported from Python 3.5 on
-                from AnnotationsChecker import AnnotationsChecker
+                from Annotations.AnnotationsChecker import AnnotationsChecker
                 annotationsChecker = AnnotationsChecker(
                     source, filename, select, ignore, [], repeatMessages,
                     annotationArgs)

eric ide

mercurial