Skip to content

Commit 5f6d9ee

Browse files
committed
Hotfix
1 parent 6e41a01 commit 5f6d9ee

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,5 @@ tests/*
1111
!tests/main.py
1212
!tests/conf.py.template
1313
!/codeforces_api
14+
/codeforces_api/
1415
!/.github

codeforces_api/types.py

+7-7
Original file line numberDiff line numberDiff line change
@@ -370,13 +370,13 @@ def __init__(
370370
old_rating,
371371
new_rating,
372372
):
373-
self.contest_id = (contest_id,)
374-
self.contest_name = (contest_name,)
375-
self.handle = (handle,)
376-
self.rank = (rank,)
377-
self.rating_update_time_seconds = (rating_update_time_seconds,)
378-
self.old_rating = (old_rating,)
379-
self.new_rating = (new_rating,)
373+
self.contest_id = contest_id
374+
self.contest_name = contest_name
375+
self.handle = handle
376+
self.rank = rank
377+
self.rating_update_time_seconds = rating_update_time_seconds
378+
self.old_rating = old_rating
379+
self.new_rating = new_rating
380380

381381
def to_dict(self):
382382
return {

codeforces_api/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "2.0.0"
1+
__version__ = "2.0.1"

0 commit comments

Comments
 (0)