Skip to content

Commit

Permalink
minor: rename sim_macro_cache.py to simulation_macro_cache.py
Browse files Browse the repository at this point in the history
fixes: issue #265
  • Loading branch information
SylviaDu99 committed Sep 20, 2024
1 parent cf53c6d commit aaae1a2
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 2 deletions.
4 changes: 4 additions & 0 deletions changelog_entry.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
- bump: patch
changes:
changed:
- Renamed sim_macro_cache.py to simulation_macro_cache.py
4 changes: 3 additions & 1 deletion policyengine_core/simulations/simulation.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@
from policyengine_core.variables import Variable, QuantityType
from policyengine_core.reforms.reform import Reform
from policyengine_core.parameters import get_parameter
from policyengine_core.simulations.sim_macro_cache import SimulationMacroCache
from policyengine_core.simulations.simulation_macro_cache import (
SimulationMacroCache,
)


class Simulation:
Expand Down
4 changes: 3 additions & 1 deletion tests/core/test_simulations.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
from policyengine_core.country_template.situation_examples import single
from policyengine_core.simulations import SimulationBuilder
from policyengine_core.simulations.sim_macro_cache import SimulationMacroCache
from policyengine_core.simulations.simulation_macro_cache import (
SimulationMacroCache,
)
import importlib.metadata
import numpy as np
from pathlib import Path
Expand Down

0 comments on commit aaae1a2

Please sign in to comment.