Skip to content

Commit

Permalink
Update markdown_to_json_parser.py
Browse files Browse the repository at this point in the history
  • Loading branch information
DmitryRyumin committed Jan 10, 2024
1 parent 8d81200 commit 2e003b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/markdown_to_json_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,13 +129,13 @@ def update_repository_with_json(file_updates):
)
]

print("All files:", file_updates)
print("All files:", [file_update.path for file_update in file_updates])

if not updated_files:
print("No changes detected. Exiting.")
return

print("Updated files:", updated_files)
print("Updated files:", [file_update.path for file_update in updated_files])

# Get the latest commit
latest_commit_sha = github_repo.get_branch(github_repo.default_branch).commit.sha
Expand Down

0 comments on commit 2e003b2

Please sign in to comment.