Skip to content

Commit

Permalink
Correct the return type as caught in code review
Browse files Browse the repository at this point in the history
Thanks Oliwia!
  • Loading branch information
mrchrisadams authored and tortila committed Jun 15, 2023
1 parent 580bfc1 commit 557824f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/accounts/models/hosting.py
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ def public_supporting_evidence(self):
return self.supporting_documents.filter(public=True)

@property
def evidence_expiry_date(self) -> typing.List[datetime.date]:
def evidence_expiry_date(self) -> typing.Optional[datetime.date]:
"""
Return the date of the most recent piece of supporting evidence
for this provider. This would act as the effective expiry date
Expand Down

0 comments on commit 557824f

Please sign in to comment.