Skip to content

Commit

Permalink
change type annotations to be accurate
Browse files Browse the repository at this point in the history
  • Loading branch information
John Tordoff committed Oct 18, 2024
1 parent e3669b7 commit b175bb5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ class _InstiUserSetup:
department_name: str | None = None
orcid_id: str | None = None
user: osfdb.OSFUser = dataclasses.field(init=False)
month_last_active: YearMonth | None = dataclasses.field(init=False)
month_last_active: datetime.datetime | None = dataclasses.field(init=False)

def __post_init__(self):
self.user = UserFactory(
Expand Down

0 comments on commit b175bb5

Please sign in to comment.