update dependencies
This commit is contained in:
@ -3,7 +3,7 @@ from datetime import datetime
|
||||
from spacepackets.ecss import PusTelecommand
|
||||
|
||||
from tmtccmd.logging import get_console_logger
|
||||
from tmtccmd.tc import QueueHelper
|
||||
from tmtccmd.tc import DefaultPusQueueHelper
|
||||
|
||||
LOGGER = get_console_logger()
|
||||
|
||||
@ -16,7 +16,7 @@ class Info:
|
||||
SET_CURRENT_TIME = "Setting current time in ASCII format"
|
||||
|
||||
|
||||
def pack_set_current_time_ascii_command(q: QueueHelper):
|
||||
def pack_set_current_time_ascii_command(q: DefaultPusQueueHelper):
|
||||
time_test_current_time = datetime.utcnow().isoformat() + "Z" + "\0"
|
||||
current_time_ascii = time_test_current_time.encode("ascii")
|
||||
LOGGER.info(f"Current time in ASCII format: {current_time_ascii}")
|
||||
|
Reference in New Issue
Block a user