(url: Optional[str], *args, **kwargs)
| 301 | |
| 302 | @staticmethod |
| 303 | def open(url: Optional[str], *args, **kwargs) -> "Repo": |
| 304 | from .open_repo import open_repo |
| 305 | |
| 306 | return open_repo(url, *args, **kwargs) |
| 307 | |
| 308 | @cached_property |
| 309 | def scm(self) -> Union["Git", "NoSCM"]: |