Skip to content

Commit 39bb3a8

Browse files
committed
removed empty lines
1 parent 688f88b commit 39bb3a8

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

lib50/_api.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -469,7 +469,7 @@ def batch_files(files, size=100):
469469
files_list = list(files)
470470
for i in range(0, len(files_list), size):
471471
yield files_list[i:i + size]
472-
472+
473473
for batch in batch_files(included):
474474
quoted_files = ' '.join(shlex.quote(f) for f in batch)
475475
run(git(f"add -f -- {quoted_files}"))
@@ -966,7 +966,7 @@ def run(command, quiet=False, timeout=None):
966966
ProgressBar.stop_all()
967967
passphrase = _prompt_password("Enter passphrase for SSH key: ")
968968
child.sendline(passphrase)
969-
969+
970970
# Get the full output by reading until EOF
971971
full_output = child.before + child.after + child.read()
972972
command_output = full_output.strip().replace("\r\n", "\n")

lib50/authentication.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ def run_authenticated(user, command, quiet=False, timeout=None):
121121
# Try to extract the conflicting branch prefix from the error message
122122
# Pattern: 'refs/heads/cs50/problems/2025/x' exists
123123
branch_prefix_match = re.search(r"'refs/heads/([^']+)' exists", command_output)
124-
124+
125125
if branch_prefix_match:
126126
conflicting_prefix = branch_prefix_match.group(1)
127127
error_msg = _("Looks like you're trying to push to a branch that conflicts with an existing one in the repository.\n"
@@ -212,7 +212,7 @@ class State(enum.Enum):
212212
else:
213213
if not os.environ.get("CODESPACES"):
214214
_show_gh_changes_warning()
215-
215+
216216
return None
217217
finally:
218218
child.close()

0 commit comments

Comments
 (0)