From 15b12ecd5f44754a260884191feafffcbf53254a Mon Sep 17 00:00:00 2001 From: Logan Cusano Date: Sat, 24 May 2025 15:58:16 -0400 Subject: [PATCH] Fix bug to convert system ID to string --- app/internal/types.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/internal/types.py b/app/internal/types.py index e90a3a2..bf7127d 100644 --- a/app/internal/types.py +++ b/app/internal/types.py @@ -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