Skip to content

Commit

Permalink
Fix bug on getting NUS assignments
Browse files Browse the repository at this point in the history
  • Loading branch information
RussellDash332 committed Feb 6, 2024
1 parent 2adabe8 commit ad3590f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion autokattis/api/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -875,7 +875,7 @@ def assignments(self, offering_id, course_id=None):
pids = []
toggle = True
else:
pids.append(asg.text.strip())
pids.append(asg.find('a').get('href').split('/')[-1])
if toggle:
data.append({
'id': aid,
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup_args = dict(
name='autokattis',
version='1.6.2',
version='1.6.3',
description='Updated Kattis API wrapper',
long_description_content_type="text/markdown",
long_description=README,
Expand Down

0 comments on commit ad3590f

Please # to comment.