(self, allow_ip: bool = False)
| 64 | Performs strict validation and cleans up invalid rules + preceding comments. |
| 65 | """ |
| 66 | def __init__(self, allow_ip: bool = False): |
| 67 | self.allow_ip = allow_ip |
| 68 | self._prev_removed = False |
| 69 | |
| 70 | @staticmethod |
| 71 | def is_comment(line: str) -> bool: |
nothing calls this directly
no outgoing calls
no test coverage detected