Skip to content

Commit 20bfec8

Browse files
committed
Upgrade pytype to 2022.4.26
1 parent 3e1d1ca commit 20bfec8

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

scripts/run_pytype.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ script_dir=$(dirname $0)
55
cd ${script_dir}/.. && \
66
pip install -e ".[async]" && \
77
pip install -e ".[adapter]" && \
8-
pip install "pytype==2022.4.15" && \
8+
pip install "pytype==2022.4.26" && \
99
pytype slack_bolt/

slack_bolt/app/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# flake8: noqa
12
"""Application interface in Bolt.
23
34
For most use cases, we recommend using `slack_bolt.app.app`.
@@ -6,4 +7,4 @@
67
"""
78

89
# Don't add async module imports here
9-
from .app import App # noqa: F401 type: ignore
10+
from .app import App # type: ignore

0 commit comments

Comments
 (0)