Fix bug to convert system ID to string

This commit is contained in:
Logan Cusano
2025-05-24 15:58:16 -04:00
parent 1d5359d788
commit 15b12ecd5f

View File

@@ -43,7 +43,7 @@ class System:
avail_on_nodes: A list of node identifiers where this is available.
description: A brief description.
"""
self._id: str = _id
self._id: str = str(_id)
self.type: DemodTypes = _type
self.name: str = name
self.frequency_khz: List[int] = frequency_khz