Skip to content

Commit

Permalink
correct datetime import
Browse files Browse the repository at this point in the history
  • Loading branch information
lewisblake committed Sep 20, 2024
1 parent f924b2e commit 18a8cd8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyaerocom/aeroval/setup_classes.py
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ class ExperimentInfo(BaseModel):
public: bool = False
exp_pi: str = getuser()
pyaerocom_version: str = __version__
creation_date: str = f"{datetime.datetime.now(datetime.timezone.utc):%Y-%m-%dT%H:%M:%S.%fZ}"
creation_date: str = f"{datetime.now(datetime.timezone.utc):%Y-%m-%dT%H:%M:%S.%fZ}"


class EvalSetup(BaseModel):
Expand Down

0 comments on commit 18a8cd8

Please sign in to comment.