Skip to content

Commit

Permalink
Remove unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
Eddasol committed Dec 4, 2024
1 parent 8943ea5 commit 8174cd5
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/isar/apis/models/start_mission_definition.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import time
from enum import Enum
from typing import Any, Dict, List, Optional
from typing import List, Optional

from alitra import Frame, Orientation, Pose, Position
from pydantic import BaseModel, Field
Expand Down
2 changes: 0 additions & 2 deletions src/isar/state_machine/state_machine.py
Original file line number Diff line number Diff line change
Expand Up @@ -237,8 +237,6 @@ def __init__(

self.current_state: State = States(self.state) # type: ignore

self.predefined_mission_id: Optional[int] = None

self.transitions_log_length: int = transitions_log_length
self.transitions_list: Deque[States] = deque([], self.transitions_log_length)

Expand Down
2 changes: 1 addition & 1 deletion src/isar/state_machine/states/monitor.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import logging
import time
from copy import deepcopy
from typing import TYPE_CHECKING, Callable, Optional, Sequence, Tuple, Union
from typing import TYPE_CHECKING, Callable, Optional, Tuple, Union

from injector import inject
from transitions import State
Expand Down

0 comments on commit 8174cd5

Please sign in to comment.