Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 5 additions & 7 deletions touchscreen/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,18 +21,16 @@
__addon_name__ = "TouchScreen"
__version__ = "0.2.6"

from aqt import mw, dialogs
from aqt.utils import showWarning

from aqt import mw
from aqt.utils import showWarning

from anki.lang import _
from anki.hooks import addHook

from PyQt5.QtWidgets import QAction, QMenu, QColorDialog, QMessageBox, QInputDialog
from PyQt5 import QtCore
from PyQt5.QtGui import QKeySequence
from PyQt5.QtGui import QColor
from PyQt5.QtCore import pyqtSlot as slot
from aqt import QMenu, QColorDialog, QMessageBox, QInputDialog, QAction, QKeySequence, QColor
from aqt import pyqtSlot as slot


# This declarations are there only to be sure that in case of troubles
# with "profileLoaded" hook everything will work.
Expand Down