We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ee9226 commit 31e2ccbCopy full SHA for 31e2ccb
2 files changed
comiclib/main.py
@@ -18,6 +18,9 @@
18
from fastapi.security import OAuth2PasswordBearer
19
from fastapi.staticfiles import StaticFiles
20
21
+# https://github.com/lmr/Template-Toolkit-Python/pull/2
22
+import collections.abc
23
+collections.Callable = collections.abc.Callable
24
from template import Template
25
26
from . import frontend_boost
pyproject.toml
@@ -22,8 +22,7 @@ dependencies = [
'sqlalchemy',
'python-multipart',
'pillow',
- 'Template-Toolkit-Python ; python_version < "3.10"',
- 'Template-Toolkit-Python-2 ; python_version >= "3.10"',
+ 'Template-Toolkit-Python',
27
'watchfiles',
28
'requests'
29
]
0 commit comments