Skip to content

Commit

Permalink
Fixed a typing issue was using list not List for FeatureCollection sp…
Browse files Browse the repository at this point in the history
…ecifications, fixed now
  • Loading branch information
cjthomas730 committed Nov 3, 2023
1 parent 78d58a7 commit f0e23a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cerulean_cloud/cloud_run_orchestrator/merging.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def reproject_to_utm(gdf_wgs84):
return gdf_wgs84.to_crs(utm_crs)

def merge_inferences(
feature_collections: list[geojson.FeatureCollection], # XXXC >> USING THIS AS A TEST replacement for base_tile_fc and offset_tile_fc
feature_collections: List[geojson.FeatureCollection], # XXXC >> USING THIS AS A TEST replacement for base_tile_fc and offset_tile_fc
isolated_conf_multiplier: float = None, # THIS IS FURTHER DEFINED ON LINES 39-40 as 1 / len(feature_collections)
proximity_meters: int = 500,
closing_meters: int = 0,
Expand Down

0 comments on commit f0e23a5

Please sign in to comment.