Skip to content

Commit

Permalink
Fix bad import in PolicyGenerator (#605)
Browse files Browse the repository at this point in the history
  • Loading branch information
sei-vsarvepalli authored Jul 11, 2024
2 parents dc1c054 + 2cea055 commit afb53df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ssvc/policy_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ def _is_topological_order(self, node_order: list) -> bool:


def main():
from ssvc.decision_points.automatable import AUTOMATABLE_1
from ssvc.decision_points.automatable import AUTOMATABLE_2
from ssvc.decision_points.exploitation import EXPLOITATION_1
from ssvc.decision_points.human_impact import HUMAN_IMPACT_2
from ssvc.decision_points.system_exposure import SYSTEM_EXPOSURE_1_0_1
Expand All @@ -347,7 +347,7 @@ def main():
decision_points=[
EXPLOITATION_1,
SYSTEM_EXPOSURE_1_0_1,
AUTOMATABLE_1,
AUTOMATABLE_2,
HUMAN_IMPACT_2,
],
)
Expand Down

0 comments on commit afb53df

Please sign in to comment.