diff options
| author | root <siehputz@gmail.com> | 2020-07-24 23:28:41 -0500 |
|---|---|---|
| committer | root <siehputz@gmail.com> | 2020-07-24 23:28:41 -0500 |
| commit | c4817968eee29257cbeaabace0a29fcbed1c3b47 (patch) | |
| tree | 25108d321af3697e608270872e59b5aec2043cc5 /shared-bindings/gnss/SatelliteSystem.c | |
| parent | d9503e579b72d8bad6f556589da50ba9833b4574 (diff) | |
| parent | 3dfed3c4aa52d06bd2eb1c28d0a1916821cc3f80 (diff) | |
Merge branch 'opt-test' of https://github.com/DavePutz/circuitpython into opt-test
Diffstat (limited to 'shared-bindings/gnss/SatelliteSystem.c')
| -rw-r--r-- | shared-bindings/gnss/SatelliteSystem.c | 12 |
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:""" |
