Skip to content

Commit

Permalink
Update update_commit.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Hunterdii authored Nov 6, 2024
1 parent d3bdc9f commit 92ece7f
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/update_commit.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,11 @@
response.raise_for_status()
commit_details = response.json()

# Debug: Print out the modified files
print("Modified files in the latest commit:")
for file in commit_details["files"]:
print(f"- {file['filename']}")

# Check the modified files in the latest commit
solution_filename = None
for file in commit_details["files"]:
Expand Down

0 comments on commit 92ece7f

Please sign in to comment.