Skip to content

Commit

Permalink
flake8 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin Ngai committed Jul 18, 2024
1 parent 1865701 commit 113f944
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions woudc_data_registry/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -975,8 +975,8 @@ def __geo_interface__(self):

'timestamp_utcoffset': self.timestamp_utcoffset,
'timestamp_date': strftime_rfc3339(self.timestamp_date),
'timestamp_time': None if self.timestamp_time is None \
else self.timestamp_time.isoformat(),
'timestamp_time': (None if self.timestamp_time is None
else self.timestamp_time.isoformat()),
'timestamp_utc': strftime_rfc3339(self.timestamp_utc),

'published': self.published,
Expand Down

0 comments on commit 113f944

Please sign in to comment.