6 """ |
6 """ |
7 Module implementing a node visitor for function type annotations. |
7 Module implementing a node visitor for function type annotations. |
8 """ |
8 """ |
9 |
9 |
10 ##################################################################################### |
10 ##################################################################################### |
11 ## The visitor and associated classes are adapted from flake8-annotations v3.0.1 |
11 ## The visitor and associated classes are adapted from flake8-annotations v3.1.1 |
12 ##################################################################################### |
12 ##################################################################################### |
13 |
13 |
14 import ast |
14 import ast |
15 |
15 |
16 from .AnnotationsEnums import AnnotationType, ClassDecoratorType, FunctionType |
16 from .AnnotationsEnums import AnnotationType, ClassDecoratorType, FunctionType |