From 5d15751528562ed7f685242605123f78a5a474d9 Mon Sep 17 00:00:00 2001 From: Athanasius Date: Wed, 7 Apr 2021 15:49:39 +0100 Subject: [PATCH] Remove unused darwin import --- hotkey.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hotkey.py b/hotkey.py index a7a19d56..66515cdf 100644 --- a/hotkey.py +++ b/hotkey.py @@ -15,7 +15,7 @@ if platform == 'darwin': # noqa: C901 from AppKit import ( NSAlternateKeyMask, NSApplication, NSBeep, NSClearLineFunctionKey, NSCommandKeyMask, NSControlKeyMask, NSDeleteFunctionKey, NSDeviceIndependentModifierFlagsMask, NSEvent, NSF1FunctionKey, NSF35FunctionKey, - NSFlagsChanged, NSFlagsChangedMask, NSKeyDown, NSKeyDownMask, NSKeyUp, NSNumericPadKeyMask, NSShiftKeyMask, + NSFlagsChanged, NSKeyDown, NSKeyDownMask, NSKeyUp, NSNumericPadKeyMask, NSShiftKeyMask, NSSound, NSWorkspace )