django-slack-tools 0.2.0__py3-none-any.whl → 0.2.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- django_slack_tools/__init__.py +1 -1
- django_slack_tools/app_settings.py +6 -2
- {django_slack_tools-0.2.0.dist-info → django_slack_tools-0.2.2.dist-info}/METADATA +1 -1
- {django_slack_tools-0.2.0.dist-info → django_slack_tools-0.2.2.dist-info}/RECORD +6 -6
- {django_slack_tools-0.2.0.dist-info → django_slack_tools-0.2.2.dist-info}/WHEEL +0 -0
- {django_slack_tools-0.2.0.dist-info → django_slack_tools-0.2.2.dist-info}/licenses/LICENSE +0 -0
django_slack_tools/__init__.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "0.2.
|
|
1
|
+
__version__ = "0.2.2"
|
|
@@ -3,16 +3,20 @@
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
5
|
from logging import getLogger
|
|
6
|
-
from typing import Any, TypedDict
|
|
6
|
+
from typing import TYPE_CHECKING, Any, TypedDict
|
|
7
7
|
|
|
8
8
|
from django.conf import settings
|
|
9
9
|
from django.core.exceptions import ImproperlyConfigured
|
|
10
10
|
from django.utils.module_loading import import_string
|
|
11
11
|
from slack_bolt import App
|
|
12
|
-
from typing_extensions import NotRequired
|
|
13
12
|
|
|
14
13
|
from django_slack_tools.slack_messages.backends.base import BaseBackend
|
|
15
14
|
|
|
15
|
+
if TYPE_CHECKING:
|
|
16
|
+
from typing import Any
|
|
17
|
+
|
|
18
|
+
from typing_extensions import NotRequired
|
|
19
|
+
|
|
16
20
|
APP_SETTINGS_KEY = "DJANGO_SLACK_TOOLS"
|
|
17
21
|
"Django settings key for this application."
|
|
18
22
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
django_slack_tools/__init__.py,sha256=
|
|
2
|
-
django_slack_tools/app_settings.py,sha256=
|
|
1
|
+
django_slack_tools/__init__.py,sha256=m6kyaNpwBcP1XYcqrelX2oS3PJuOnElOcRdBa9pEb8c,22
|
|
2
|
+
django_slack_tools/app_settings.py,sha256=N_xWW1TxkvF1-LuDjuNZFiE0XKpQiVmse2_ZH3lbUok,3837
|
|
3
3
|
django_slack_tools/views.py,sha256=XuQh0g9A2O51DVkMUhm8x8cswZytZcECNIsDuLsM0UI,1168
|
|
4
4
|
django_slack_tools/locale/ko_KR/LC_MESSAGES/django.po,sha256=ySlOJgCeqFzesrWLm1BugmdLb878GSGQJZp7a1uXopw,14864
|
|
5
5
|
django_slack_tools/slack_messages/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -37,7 +37,7 @@ django_slack_tools/utils/template/__init__.py,sha256=4aMW_Qum7p_-5hm0s5rQXOVSikA
|
|
|
37
37
|
django_slack_tools/utils/template/base.py,sha256=Ql14Z_ZRnsXS3W724hTbPebzqBoxewf98GaXyny8rYg,422
|
|
38
38
|
django_slack_tools/utils/template/dict.py,sha256=99vNwlO4WzDZuhPvPIcrwkB-sRYl0Ci5tOnW4sqYNTY,1262
|
|
39
39
|
django_slack_tools/utils/template/django.py,sha256=971UIqU8wMtcPT_K2yhn4VdnZB8fOAe28q1YbSoKS58,4104
|
|
40
|
-
django_slack_tools-0.2.
|
|
41
|
-
django_slack_tools-0.2.
|
|
42
|
-
django_slack_tools-0.2.
|
|
43
|
-
django_slack_tools-0.2.
|
|
40
|
+
django_slack_tools-0.2.2.dist-info/METADATA,sha256=aOFCx3nd4sfcD1M8aE1HyDNvao61BioAPnkAcUcjNZM,4493
|
|
41
|
+
django_slack_tools-0.2.2.dist-info/WHEEL,sha256=3U_NnUcV_1B1kPkYaPzN-irRckL5VW_lytn0ytO_kRY,87
|
|
42
|
+
django_slack_tools-0.2.2.dist-info/licenses/LICENSE,sha256=lPgIV-vu4gapOeftp1Dp5RsN6zlsiMiubqCNeP466hw,1067
|
|
43
|
+
django_slack_tools-0.2.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|