Skip to content

Commit

Permalink
fixed naming in typing
Browse files Browse the repository at this point in the history
  • Loading branch information
TonioF authored Mar 4, 2025
1 parent 35daea2 commit d14dce7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions xcube_cci/cciodp.py
Original file line number Diff line number Diff line change
Expand Up @@ -1506,15 +1506,15 @@ async def _get_dataset_chunk(

def get_geodataframe_from_shapefile(
self, request: Dict
) -> Optional[gpd.geodataframe]:
) -> Optional[gpd.GeoDataFrame]:
gdf = self._run_with_session(
self._get_geodataframe_from_shapefile, request
)
return gdf

async def _get_geodataframe_from_shapefile(
self, session, request: Dict
) -> Optional[gpd.geodataframe]:
) -> Optional[gpd.GeoDataFrame]:
var_names = request['varNames']
shapefile_url = await self._get_shapefile_url(session, request)
if not shapefile_url:
Expand Down

0 comments on commit d14dce7

Please sign in to comment.