Fix bug to convert system ID to string
This commit is contained in:
@@ -43,7 +43,7 @@ class System:
|
|||||||
avail_on_nodes: A list of node identifiers where this is available.
|
avail_on_nodes: A list of node identifiers where this is available.
|
||||||
description: A brief description.
|
description: A brief description.
|
||||||
"""
|
"""
|
||||||
self._id: str = _id
|
self._id: str = str(_id)
|
||||||
self.type: DemodTypes = _type
|
self.type: DemodTypes = _type
|
||||||
self.name: str = name
|
self.name: str = name
|
||||||
self.frequency_khz: List[int] = frequency_khz
|
self.frequency_khz: List[int] = frequency_khz
|
||||||
|
|||||||
Reference in New Issue
Block a user