From 155e9e7d80f18ea42eda687488da07bb94b6d63c Mon Sep 17 00:00:00 2001 From: semuadmin <28569967+semuadmin@users.noreply.github.com> Date: Tue, 17 Sep 2024 07:58:43 +0100 Subject: [PATCH] update readme --- README.md | 2 +- tests/test_static.py | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 0050500..bd2742a 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ Companion libraries are available which handle UBX © and RTCM3 © messa ![Contributors](https://img.shields.io/github/contributors/semuconsulting/pynmeagps.svg) ![Open Issues](https://img.shields.io/github/issues-raw/semuconsulting/pynmeagps) -The library implements a comprehensive set of outbound (GET) and inbound (SET/POLL) GNSS NMEA messages relating to GNSS/GPS and Maritime devices, but is readily [extensible](#extensibility). Refer to [`NMEA_MSGIDS`](https://github.com/semuconsulting/pynmeagps/blob/master/src/pynmeagps/nmeatypes_core.py#L172) and [`NMEA_MSGIDS_PROP`](https://github.com/semuconsulting/pynmeagps/blob/master/src/pynmeagps/nmeatypes_core.py#L224) for the complete dictionary of standard and proprietary messages currently supported. While the [NMEA 0183 protocol itself is proprietary](https://www.nmea.org/nmea-0183.html), the definitions here have been collated from public domain sources. +The library implements a comprehensive set of outbound (GET) and inbound (SET/POLL) GNSS NMEA messages relating to GNSS/GPS and Maritime devices, but is readily [extensible](#extensibility). Refer to [`NMEA_MSGIDS`](https://github.com/semuconsulting/pynmeagps/blob/master/src/pynmeagps/nmeatypes_core.py#L224) and [`NMEA_MSGIDS_PROP`](https://github.com/semuconsulting/pynmeagps/blob/master/src/pynmeagps/nmeatypes_core.py#L367) for the complete dictionary of standard and proprietary messages currently supported. While the [NMEA 0183 protocol itself is proprietary](https://www.nmea.org/nmea-0183.html), the definitions here have been collated from public domain sources. Sphinx API Documentation in HTML format is available at [https://www.semuconsulting.com/pynmeagps](https://www.semuconsulting.com/pynmeagps). diff --git a/tests/test_static.py b/tests/test_static.py index 97ee06d..323157e 100644 --- a/tests/test_static.py +++ b/tests/test_static.py @@ -82,7 +82,6 @@ def testMissingDefs(self): # sanity check for missing payload definitions def testMissingCodes(self): # sanity check for missing sentence IDs for msg in NMEA_PAYLOADS_GET: - print(msg) self.assertTrue(msg in NMEA_MSGIDS.keys() or msg in NMEA_MSGIDS_PROP.keys()) def testGetParts(self):