(cls, url: Optional[str], **kwargs)
| 182 | |
| 183 | @no_type_check |
| 184 | def __new__(cls, url: Optional[str], **kwargs) -> object: |
| 185 | return str.__new__(cls, cls.build(**kwargs) if url is None else url) |
| 186 | |
| 187 | def __init__( |
| 188 | self, |
no test coverage detected