daemon: added type hinting to globals in geo.py
This commit is contained in:
parent
1b025c47da
commit
dc9089fcd1
1 changed files with 3 additions and 3 deletions
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue