Add a mark, useful for topological sort.
| 113 | |
| 114 | |
| 115 | class MarkedDeclaration: |
| 116 | """Add a mark, useful for topological sort.""" |
| 117 | |
| 118 | def __init__(self, declaration: HeaderDeclaration, mark: bool) -> None: |
| 119 | self.declaration = declaration |
| 120 | self.mark = False |
| 121 | |
| 122 | |
| 123 | class MypycPlugin(Plugin): |
no outgoing calls
no test coverage detected
searching dependent graphs…