(self)
| 132 | line: int | None = None |
| 133 | |
| 134 | def format(self) -> str: |
| 135 | location = str(self.path) |
| 136 | if self.line is not None: |
| 137 | location = f"{location}:{self.line}" |
| 138 | return f"[{self.check}] {location} - {self.message}" |
| 139 | |
| 140 | |
| 141 | class IgnoreUnknownTagsLoader(yaml.SafeLoader if yaml else object): |
no outgoing calls
no test coverage detected