Location of a finding within a file (used by all analyzers).
| 36 | |
| 37 | @dataclass |
| 38 | class Location: |
| 39 | """Location of a finding within a file (used by all analyzers).""" |
| 40 | |
| 41 | file: str |
| 42 | start_line: int |
| 43 | end_line: int | None = None |
| 44 | |
| 45 | |
| 46 | @dataclass |
no outgoing calls