explicitly cast frequency

This commit is contained in:
Jakob Ketterl 2020-04-05 21:47:40 +02:00
parent 4d67b684e4
commit 8fdf263e4b
1 changed files with 1 additions and 1 deletions

View File

@ -154,7 +154,7 @@ class Uploader(object):
def encodeSpot(self, spot):
return bytes(
self.encodeString(spot["callsign"])
+ list(spot["freq"].to_bytes(4, "big"))
+ list(int(spot["freq"]).to_bytes(4, "big"))
+ list(int(spot["db"]).to_bytes(1, "big", signed=True))
+ self.encodeString(spot["mode"])
+ self.encodeString(spot["locator"])