Skip to content

Commit

Permalink
Fix: temporary coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
orviz committed Oct 15, 2024
1 parent 29e2cb5 commit a185da0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions plugins/epos/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,10 +78,10 @@ def _get_temporal_coverage(cls, element_values):
"startDate": "2018-01-31T00:00:00Z"
}]
"""
return [
(value_data.get("startDate", ""), value_data.get("endDate", ""))
for value_data in element_values
]
return [{
"start_date": value_data.get("startDate", ""),
"end_date": value_data.get("endDate", "")
}]

@classmethod
def _get_person(cls, element_values):
Expand Down

0 comments on commit a185da0

Please sign in to comment.