mirror of
https://github.com/Mayuri-Chan/pyrofork.git
synced 2026-01-05 14:54:51 +00:00
Clean Location type
This commit is contained in:
parent
d10326605f
commit
ba254e6643
1 changed files with 1 additions and 2 deletions
|
|
@ -31,10 +31,9 @@ class Location(Object):
|
||||||
|
|
||||||
latitude (``float`` ``64-bit``):
|
latitude (``float`` ``64-bit``):
|
||||||
Latitude as defined by sender.
|
Latitude as defined by sender.
|
||||||
|
|
||||||
"""
|
"""
|
||||||
ID = 0xb0700012
|
ID = 0xb0700012
|
||||||
|
|
||||||
def __init__(self, longitude, latitude):
|
def __init__(self, longitude: float, latitude: float):
|
||||||
self.longitude = longitude # double
|
self.longitude = longitude # double
|
||||||
self.latitude = latitude # double
|
self.latitude = latitude # double
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue