anki/qt/aqt/pinnedmodules.py

39 lines
800 B
Python
Raw Normal View History

2019-02-05 04:59:03 +01:00
# Copyright: Ankitects Pty Ltd and contributors
2018-12-14 11:32:53 +01:00
# License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
# this file is imported as part of the bundling process to ensure certain
# modules are included in the distribution
2019-03-04 08:25:19 +01:00
# pylint: disable=import-error,unused-import
2019-12-20 10:19:03 +01:00
# included implicitly in the past, and relied upon by some add-ons
import cgi
import decimal
2019-12-20 10:19:03 +01:00
# useful for add-ons
import logging
import logging.config
import logging.handlers
2018-12-14 11:32:53 +01:00
# required by requests library
import queue
2019-12-20 10:19:03 +01:00
import typing
import uuid
import PyQt5.QtSvg
2020-05-08 09:29:09 +02:00
import socks
2018-12-14 11:32:53 +01:00
# legacy compat
import anki.storage
import anki.sync
from anki.utils import isLin, isWin
2018-12-14 11:32:53 +01:00
# external module access in Windows
if isWin:
import pythoncom
import pywintypes
import win32com
if isLin:
import fcntl