From 48265e73b1e3ce33208627053ca6201c4dae6d56 Mon Sep 17 00:00:00 2001 From: Mike Kinney Date: Wed, 12 Jan 2022 15:54:07 -0800 Subject: [PATCH] no need to import pygatt here --- meshtastic/__init__.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/meshtastic/__init__.py b/meshtastic/__init__.py index 19f669e..9bd4a72 100644 --- a/meshtastic/__init__.py +++ b/meshtastic/__init__.py @@ -82,9 +82,6 @@ from meshtastic import (mesh_pb2, portnums_pb2, apponly_pb2, admin_pb2, environmental_measurement_pb2, remote_hardware_pb2, channel_pb2, radioconfig_pb2, util) -if platform.system() == 'Linux': - # pylint: disable=E0401 - import pygatt # Note: To follow PEP224, comments should be after the module variable.