We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Calling assignment.get_submissions() returns a paginated list, but when trying to access any item from the list an AttributeError is thrown:
AttributeError: 'Requester' object has no attribute 'new_quizzes_url'
for an assignment "thisAssignment" with submissions do:
submissions=thisAssignment.get_submissions() submissions[0]
I expect to be able to access items in the paginated list without getting an error
Python 3.13.1 CanvasAPI Version: 3.3.0
If I downgrade to canvasapi version 3.2.0 I do not get this error.
The text was updated successfully, but these errors were encountered:
Update 'Requester' to include new_quizzes_url attribute (ucfopen#684)
3e6cfcf
Successfully merging a pull request may close this issue.
Describe the bug
Calling assignment.get_submissions() returns a paginated list, but when trying to access any item from the list an AttributeError is thrown:
AttributeError: 'Requester' object has no attribute 'new_quizzes_url'
To Reproduce
for an assignment "thisAssignment" with submissions do:
Expected behavior
I expect to be able to access items in the paginated list without getting an error
Environment information
Python 3.13.1
CanvasAPI Version: 3.3.0
Additional context
If I downgrade to canvasapi version 3.2.0 I do not get this error.
The text was updated successfully, but these errors were encountered: