From b37e73faa419193b59210e55d8de98a38cdab853 Mon Sep 17 00:00:00 2001 From: "Peter F. Patel-Schneider" Date: Mon, 19 Feb 2024 13:48:54 -0500 Subject: [PATCH] device: clean up __init__ in logitech_receiver --- lib/logitech_receiver/__init__.py | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) diff --git a/lib/logitech_receiver/__init__.py b/lib/logitech_receiver/__init__.py index 7570dd918a..654faa0d10 100644 --- a/lib/logitech_receiver/__init__.py +++ b/lib/logitech_receiver/__init__.py @@ -15,27 +15,13 @@ ## You should have received a copy of the GNU General Public License along ## with this program; if not, write to the Free Software Foundation, Inc., ## 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. -"""Low-level interface for devices connected through a Logitech Universal -Receiver (UR). +"""Low-level interface for devices using Logitech HID++ protocol. Uses the HID api exposed through hidapi.py, a Python thin layer over a native implementation. - -Incomplete. Based on a bit of documentation, trial-and-error, and guesswork. - -References: -http://julien.danjou.info/blog/2012/logitech-k750-linux-support -http://6xq.net/git/lars/lshidpp.git/plain/doc/ """ import logging logger = logging.getLogger(__name__) logger.setLevel(logging.root.level) -# if logging.root.level > logging.DEBUG: -# logger.addHandler(logging.NullHandler()) -# logger.propagate = 0 - -del logging - -__version__ = "0.9"