(self, **kwargs)
| 41 | user_agent: str = "SecuritySuite/0.2.0 (https://github.com/security-suite)" |
| 42 | |
| 43 | # Rate limiting |
| 44 | requests_per_second: float = 5.0 |
| 45 | |
| 46 | def __init__(self, **kwargs): |
| 47 | super().__init__(**kwargs) |
| 48 | # Ensure data directory exists |
| 49 | self.data_dir.mkdir(parents=True, exist_ok=True) |
nothing calls this directly
no outgoing calls
no test coverage detected