Skip to content

Commit

Permalink
typing.Optional| None
Browse files Browse the repository at this point in the history
Co-authored-by: Sam Sciolla <[email protected]>
  • Loading branch information
lsloan and ssciolla authored May 3, 2023
1 parent 7b2895f commit a132a38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion peer_review_data/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def saveAssessmentsAndComments(
LOGGER.warning(f'Assessment ({canvasAssessment.id}) '
'is NOT a peer-review.')

assessment: Optional[models.Assessment] = None
assessment: models.Assessment | None = None
problemType: str = None
problemObjectId: int = None
problemException: str = None
Expand Down

0 comments on commit a132a38

Please sign in to comment.