Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added __pycache__/sync_status_readme.cpython-314.pyc
Binary file not shown.
2 changes: 1 addition & 1 deletion sync_status_readme.py
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ def get_fork_count():
return None
api_url = f"https://api.github.com/repos/{owner}/{repo}"
try:
response = requests.get(api_url)
response = requests.get(api_url, timeout=10.0)
response.raise_for_status()
repo_data = response.json()
return repo_data['forks_count']
Expand Down