Skip to content

Commit

Permalink
clean up imports
Browse files Browse the repository at this point in the history
  • Loading branch information
ahouseholder committed Sep 28, 2023
1 parent 3c8de5e commit 3aae3fa
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 0 additions & 2 deletions test/cvd_states/test_hypercube.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,7 @@
from itertools import product

import vultron.cvd_states.hypercube as hc
import vultron.cvd_states.states
from vultron.cvd_states.errors import TransitionValidationError
from vultron.cvd_states.states import CS_pxa
from vultron.cvd_states.validations import is_valid_transition


Expand Down
2 changes: 1 addition & 1 deletion vultron/cvd_states/hypercube.py
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ def paths_to(self, state: str = "VFDPXA") -> List[tuple]:
@property
def histories(self) -> list:
"""
Return all possible histories
A list of all possible case histories traversing the case state space from _vfdpxa_ to _VFDPXA_.
"""
_H = self.sequences_between(start="vfdpxa", end="VFDPXA")
H = ["".join(h) for h in _H]
Expand Down
2 changes: 1 addition & 1 deletion vultron/cvd_states/states.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"""

from enum import Enum, Flag, IntEnum
from typing import List, NamedTuple, Tuple
from typing import NamedTuple, Tuple

from vultron.cvd_states.validations import ensure_valid_state

Expand Down

0 comments on commit 3aae3fa

Please sign in to comment.