Skip to content

Commit

Permalink
settings in write_omnibus_table
Browse files Browse the repository at this point in the history
  • Loading branch information
dhensle committed Mar 12, 2024
1 parent e8144af commit f30a9ea
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion activitysim/core/estimation.py
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,9 @@ def write_omnibus_table(self):
if len(self.omnibus_tables) == 0:
return

settings = config.read_model_settings(ESTIMATION_SETTINGS_FILE_NAME)
settings = self.state.filesystem.read_model_settings(
ESTIMATION_SETTINGS_FILE_NAME, mandatory=False
)

edbs_to_skip = settings.get("SKIP_BUNDLE_WRITE_FOR", [])
if self.bundle_name in edbs_to_skip:
Expand Down

0 comments on commit f30a9ea

Please sign in to comment.