comparison: src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Complexity/ComplexityChecker.py
src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Complexity/ComplexityChecker.py
- branch
- eric7
- changeset 9473
- 3f23dbf37dbe
- parent 9221
- bf71ee032bb4
- child 9653
- e67609152c5e
equal
deleted
inserted
replaced
5 |
5 |
6 """ |
6 """ |
7 Module implementing a checker for code complexity. |
7 Module implementing a checker for code complexity. |
8 """ |
8 """ |
9 |
9 |
|
10 import ast |
10 import copy |
11 import copy |
11 import ast |
|
12 |
12 |
13 from .mccabe import PathGraphingAstVisitor |
13 from .mccabe import PathGraphingAstVisitor |
14 |
14 |
15 |
15 |
16 class ComplexityChecker: |
16 class ComplexityChecker: |