Skip to content

Commit 60e895b

Browse files
committed
explicitly type variable whose type isn't infered from return value
1 parent 210a268 commit 60e895b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

oaff/app/oaff/app/data/sources/postgresql/stac_hybrid/postgresql_data_source.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -415,7 +415,7 @@ async def _get_table_temporal_extents( # noqa: C901
415415
table_models: Dict[str, sa.Table],
416416
table_temporal_fields: Dict[str, List[TemporalInstant]],
417417
) -> Dict[str, List[List[datetime]]]:
418-
table_temporal_extents = {} # type: ignore
418+
table_temporal_extents: Dict[str, List[List[datetime]]] = {}
419419
for qualified_table_name, temporal_fields in table_temporal_fields.items():
420420
start = None
421421
end = None

0 commit comments

Comments
 (0)