Skip to content

Commit

Permalink
add mixins
Browse files Browse the repository at this point in the history
  • Loading branch information
spyoungtech committed Jan 6, 2021
1 parent 28baaed commit 05a7322
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions ahk/autohotkey.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from ahk.keyboard import KeyboardMixin, AsyncKeyboardMixin
from ahk.mouse import MouseMixin, AsyncMouseMixin
from ahk.registery import RegisteryMixin#, AsyncRegisteryMixin
from ahk.screen import ScreenMixin#, AsyncScreenMixin
from ahk.screen import ScreenMixin, AsyncScreenMixin
from ahk.sound import SoundMixin#, AsyncSoundMixin
from ahk.window import WindowMixin, AsyncWindowMixin
from ahk.gui import GUIMixin#, AsyncGUIMixin
Expand All @@ -26,11 +26,10 @@ class AHK(WindowMixin, MouseMixin, KeyboardMixin, ScreenMixin, SoundMixin, Regis

#
class AsyncAHK(
#AsyncWindowMixin,
AsyncMouseMixin,
AsyncKeyboardMixin,
AsyncWindowMixin
#AsyncScreenMixin,
AsyncWindowMixin,
AsyncScreenMixin,
#AsyncSoundMixin,
#AsyncRegisteryMixin,
#AsyncGUIMixin
Expand Down

0 comments on commit 05a7322

Please sign in to comment.