Skip to content

Commit

Permalink
fix(PostprocessingPipeline): add config attribute (#210)
Browse files Browse the repository at this point in the history
  • Loading branch information
mrsmrynk authored Aug 13, 2024
1 parent 57937ef commit 7771f15
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aviary/pipeline/postprocessing_pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def from_config(
postprocessing pipeline
"""
geodata_postprocessor_class = globals()[config.geodata_postprocessor_config.name]
geodata_postprocessor = geodata_postprocessor_class.from_config(config.geodata_postprocessor_config)
geodata_postprocessor = geodata_postprocessor_class.from_config(config.geodata_postprocessor_config.config)

return cls(
gdf=cast(gpd.GeoDataFrame, config.gdf),
Expand Down

0 comments on commit 7771f15

Please # to comment.