https://github.com/gil9red/lenta_of_played_games
https://github.com/gil9red/lenta_of_played_games
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/gil9red/lenta_of_played_games
- Owner: gil9red
- Created: 2021-01-08T07:46:19.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-09-06T23:05:27.000Z (over 1 year ago)
- Last Synced: 2024-09-07T02:34:56.848Z (over 1 year ago)
- Language: Python
- Homepage:
- Size: 1.19 MB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# lenta_of_played_games
## Screenshots:
|  |  |
| --- | --- |
### Known Issues:
* https://github.com/sigmavirus24/github3.py/issues/1019
* Fix: in `\Lib\site-packages\github3\gists\history.py` replace:
```
self.additions = self.change_status["additions"]
self.deletions = self.change_status["deletions"]
self.total = self.change_status["total"]
```
on:
```
self.additions = self.change_status.get("additions")
self.deletions = self.change_status.get("deletions")
self.total = self.change_status.get("total")
```