Skip to content

Commit

Permalink
Hotfix
Browse files Browse the repository at this point in the history
  • Loading branch information
VadVergasov committed Mar 15, 2021
1 parent 6e41a01 commit 5f6d9ee
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,5 @@ tests/*
!tests/main.py
!tests/conf.py.template
!/codeforces_api
/codeforces_api/
!/.github
14 changes: 7 additions & 7 deletions codeforces_api/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -370,13 +370,13 @@ def __init__(
old_rating,
new_rating,
):
self.contest_id = (contest_id,)
self.contest_name = (contest_name,)
self.handle = (handle,)
self.rank = (rank,)
self.rating_update_time_seconds = (rating_update_time_seconds,)
self.old_rating = (old_rating,)
self.new_rating = (new_rating,)
self.contest_id = contest_id
self.contest_name = contest_name
self.handle = handle
self.rank = rank
self.rating_update_time_seconds = rating_update_time_seconds
self.old_rating = old_rating
self.new_rating = new_rating

def to_dict(self):
return {
Expand Down
2 changes: 1 addition & 1 deletion codeforces_api/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "2.0.0"
__version__ = "2.0.1"

0 comments on commit 5f6d9ee

Please sign in to comment.