Skip to content

Commit

Permalink
Removed shallow copy that caused issues on Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
dalmijn committed Oct 12, 2023
1 parent c892bfb commit 00e17b1
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/fiat/models/geom.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,6 @@ def resolve(
"""_summary_."""
# Setup some local referenced datasets and metadata
_exp = self.exposure_data
_gm = self.exposure_geoms
_risk = self.cfg.get("hazard.risk")
_rp_coef = self.cfg.get("hazard.rp_coefficients")
# Reverse the _rp_coef to let them coincide with the acquired
Expand Down Expand Up @@ -166,7 +165,7 @@ def resolve(
_d = None

# Loop over all the geometry source files
for key, gm in _gm.items():
for key, gm in self.exposure_data.items():
_add = key[-1]

# Define outgoing dataset
Expand Down

0 comments on commit 00e17b1

Please sign in to comment.