Skip to content

Commit fd7b3b3

Browse files
committed
Fix format
1 parent 848b9dc commit fd7b3b3

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/gitingest/clone.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ class CloneConfig:
1414
branch: str | None = None
1515

1616

17-
1817
async def check_repo_exists(url: str) -> bool:
1918
"""
2019
Check if a repository exists at the given URL using an HTTP HEAD request.
@@ -45,7 +44,6 @@ async def check_repo_exists(url: str) -> bool:
4544

4645

4746
async def run_git_command(*args: str) -> tuple[bytes, bytes]:
48-
4947
"""
5048
Executes a git command asynchronously and captures its output.
5149
@@ -111,7 +109,6 @@ async def clone_repo(config: CloneConfig) -> tuple[bytes, bytes]:
111109
commit: str | None = config.commit
112110
branch: str | None = config.branch
113111

114-
115112
if not url:
116113
raise ValueError("The 'url' parameter is required.")
117114

0 commit comments

Comments
 (0)