summaryrefslogtreecommitdiff
path: root/shared-bindings/gnss/SatelliteSystem.c
diff options
context:
space:
mode:
Diffstat (limited to 'shared-bindings/gnss/SatelliteSystem.c')
-rw-r--r--shared-bindings/gnss/SatelliteSystem.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/shared-bindings/gnss/SatelliteSystem.c b/shared-bindings/gnss/SatelliteSystem.c
index 8739fbc02..951c5a0e8 100644
--- a/shared-bindings/gnss/SatelliteSystem.c
+++ b/shared-bindings/gnss/SatelliteSystem.c
@@ -7,30 +7,30 @@
//| class SatelliteSystem:
//| """Satellite system type"""
//|
-//| def __init__(self, ):
+//| def __init__(self) -> None:
//| """Enum-like class to define the satellite system type."""
//|
-//| GPS: Any = ...
+//| GPS: SatelliteSystem = ...
//| """Global Positioning System.
//|
//| :type gnss.SatelliteSystem:"""
//|
-//| GLONASS: Any = ...
+//| GLONASS: SatelliteSystem = ...
//| """GLObal NAvigation Satellite System.
//|
//| :type gnss.SatelliteSystem:"""
//|
-//| SBAS: Any = ...
+//| SBAS: SatelliteSystem = ...
//| """Satellite Based Augmentation System.
//|
//| :type gnss.SatelliteSystem:"""
//|
-//| QZSS_L1CA: Any = ...
+//| QZSS_L1CA: SatelliteSystem = ...
//| """Quasi-Zenith Satellite System L1C/A.
//|
//| :type gnss.SatelliteSystem:"""
//|
-//| QZSS_L1S: Any = ...
+//| QZSS_L1S: SatelliteSystem = ...
//| """Quasi-Zenith Satellite System L1S.
//|
//| :type gnss.SatelliteSystem:"""