8167:cdc1b6692766 | 8168:bdb0258faf42 |
---|---|
8 """ | 8 """ |
9 | 9 |
10 import sys | 10 import sys |
11 import ast | 11 import ast |
12 | 12 |
13 from mccabe import PathGraphingAstVisitor | 13 from .mccabe import PathGraphingAstVisitor |
14 | 14 |
15 | 15 |
16 class ComplexityChecker(object): | 16 class ComplexityChecker(object): |
17 """ | 17 """ |
18 Class implementing a checker for code complexity. | 18 Class implementing a checker for code complexity. |