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
When running
submissions = assignment.list_submission(student=student) if submissions: submission = submissions[0] submission.grader = grader submission.saveInstance()
I get the error AttributeError: 'Submissions' object has no attribute 'saveInstance'
AttributeError: 'Submissions' object has no attribute 'saveInstance'
Similarly when trying to call the API manually:
requests.patch(f"https://api.codepost.io/submissions/{submission_id}", headers={"Authorization": f"Token {API_KEY}", "Content-Type": "application/json"}, data={"grader": grader})
There is no error and I get a 200, but the grader is not updated
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When running
I get the error
AttributeError: 'Submissions' object has no attribute 'saveInstance'
Similarly when trying to call the API manually:
There is no error and I get a 200, but the grader is not updated
The text was updated successfully, but these errors were encountered: