mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 22:12:21 -04:00
add file to track pinned modules
This commit is contained in:
parent
33ae6404f1
commit
9e4730f9dd
1 changed files with 20 additions and 0 deletions
20
aqt/pinnedmodules.py
Normal file
20
aqt/pinnedmodules.py
Normal file
|
@ -0,0 +1,20 @@
|
|||
# Copyright: Damien Elmes <anki@ichi2.net>
|
||||
# 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
|
||||
|
||||
# required by requests library
|
||||
import queue
|
||||
|
||||
from anki.utils import isWin
|
||||
|
||||
# external module access in Windows
|
||||
if isWin:
|
||||
import pythoncom
|
||||
import win32com
|
||||
import pywintypes
|
||||
|
||||
# included implicitly in the past, and relied upon by some add-ons
|
||||
import cgi
|
||||
import uuid
|
Loading…
Reference in a new issue