Skip to content

Commit dcfe12d

Browse files
committed
move command.py to command_types in helper
1 parent b7a25ac commit dcfe12d

4 files changed

Lines changed: 3 additions & 3 deletions

File tree

aikido_zen/background_process/commands/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from aikido_zen.helpers.logging import logger
2-
from .command import CommandContext
2+
from aikido_zen.helpers.ipc.command_types import CommandContext
33
from .put_event import PutEventCommand
44
from .check_firewall_lists import process_check_firewall_lists
55
from .read_property import process_read_property

aikido_zen/background_process/commands/put_event.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from .command import Command, CommandContext, Payload
1+
from aikido_zen.helpers.ipc.command_types import Command, CommandContext, Payload
22

33

44
class PutEventReq:
File renamed without changes.

aikido_zen/helpers/ipc/send_payload.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from aikido_zen.background_process import AikidoIPCCommunications
2-
from aikido_zen.background_process.commands.command import Payload
2+
from aikido_zen.helpers.ipc.command_types import Payload
33

44

55
def send_payload(comms: AikidoIPCCommunications, payload: Payload):

0 commit comments

Comments
 (0)