File tree Expand file tree Collapse file tree 6 files changed +8
-5
lines changed
Expand file tree Collapse file tree 6 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -5,5 +5,5 @@ script_dir=$(dirname $0)
55cd ${script_dir} /.. && \
66 pip install -e " .[async]" && \
77 pip install -e " .[adapter]" && \
8- pip install " pytype==2021.10.25 " && \
8+ pip install " pytype==2021.12.8 " && \
99 pytype slack_bolt/
Original file line number Diff line number Diff line change 1717 "pytest-cov>=3,<4" ,
1818 "Flask-Sockets>=0.2,<1" ,
1919 "Werkzeug<2" , # TODO: support Flask 2.x
20- "black==21.10b0 " ,
20+ "black==21.12b0 " ,
2121]
2222
2323async_test_dependencies = test_dependencies + [
Original file line number Diff line number Diff line change 1- from datetime import datetime
1+ from datetime import datetime # type: ignore
22from http import HTTPStatus
33
44from falcon import Request , Response
Original file line number Diff line number Diff line change 1- from datetime import datetime
1+ from datetime import datetime # type: ignore
22
33from sanic .request import Request
44from sanic .response import HTTPResponse
Original file line number Diff line number Diff line change 1- from datetime import datetime
1+ from datetime import datetime # type: ignore
22
33from tornado .httputil import HTTPServerRequest
44from tornado .web import RequestHandler
Original file line number Diff line number Diff line change 1+ # pytype: skip-file
2+ # Note: Since 2021.12.8, the pytype code analyzer does not properly work for this file
3+
14from logging import Logger
25from typing import Optional , Tuple
36
You can’t perform that action at this time.
0 commit comments