From dbf2a4301e53fb5c04518410c2c8f1458cf3c04a Mon Sep 17 00:00:00 2001 From: Liz Date: Fri, 13 Jun 2025 14:24:50 -0400 Subject: [PATCH] lint --- .../CircuitPython_Serial_Typewriter/boot.py | 2 +- Not_A_Typewriter/Desktop_Not_A_Typewriter/keyboard_sender.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Not_A_Typewriter/Desktop_Not_A_Typewriter/CircuitPython_Serial_Typewriter/boot.py b/Not_A_Typewriter/Desktop_Not_A_Typewriter/CircuitPython_Serial_Typewriter/boot.py index d4645f413..ff9f9e96e 100644 --- a/Not_A_Typewriter/Desktop_Not_A_Typewriter/CircuitPython_Serial_Typewriter/boot.py +++ b/Not_A_Typewriter/Desktop_Not_A_Typewriter/CircuitPython_Serial_Typewriter/boot.py @@ -5,4 +5,4 @@ import usb_cdc # Enable USB CDC (serial) communication -usb_cdc.enable(console=True, data=True) \ No newline at end of file +usb_cdc.enable(console=True, data=True) diff --git a/Not_A_Typewriter/Desktop_Not_A_Typewriter/keyboard_sender.py b/Not_A_Typewriter/Desktop_Not_A_Typewriter/keyboard_sender.py index 019f63648..f8f3ab543 100644 --- a/Not_A_Typewriter/Desktop_Not_A_Typewriter/keyboard_sender.py +++ b/Not_A_Typewriter/Desktop_Not_A_Typewriter/keyboard_sender.py @@ -71,7 +71,8 @@ class TypewriterSender: keyboard.Key.cmd_r: 0x80, } - def find_feather_port(self): + @staticmethod + def find_feather_port(): """Find the Feather's serial port""" ports = serial.tools.list_ports.comports()