daemon: added type hinting to globals in geo.py

This commit is contained in:
Blake Harnden 2021-03-17 09:40:07 -07:00
parent 1b025c47da
commit dc9089fcd1

View file

@ -10,9 +10,9 @@ from pyproj import Transformer
from core.emulator.enumerations import RegisterTlvs
SCALE_FACTOR = 100.0
CRS_WGS84 = 4326
CRS_PROJ = 3857
SCALE_FACTOR: float = 100.0
CRS_WGS84: int = 4326
CRS_PROJ: int = 3857
class GeoLocation: