Skip to content
This repository was archived by the owner on Feb 20, 2026. It is now read-only.

Commit ba54050

Browse files
committed
Bump to mypy 0.700
1 parent 4c99288 commit ba54050

3 files changed

Lines changed: 12 additions & 6 deletions

File tree

cli_ui/__init__.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,10 @@ def tabs(num: int) -> str:
397397

398398

399399
def info_table(
400-
data: Any, *, headers: Optional[Sequence[str]] = None, fileobj: Any = None
400+
data: Any,
401+
*,
402+
headers: Union[str, Dict[str, str], Sequence[str]] = (),
403+
fileobj: Any = None
401404
) -> None:
402405
if not fileobj:
403406
fileobj = sys.stdout

requirements.lock

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Generated with dmenv 0.7.0, python 3.7.1, on Linux
1+
# Generated with dmenv 0.14.0, python 3.7.1, on Linux
22
alabaster==0.7.12
33
appdirs==1.4.3
44
atomicwrites==1.2.1
@@ -17,9 +17,10 @@ imagesize==1.1.0
1717
Jinja2==2.10
1818
MarkupSafe==1.1.0
1919
more-itertools==4.3.0
20-
mypy==0.650
2120
mypy-extensions==0.4.1
21+
mypy==0.700
2222
packaging==18.0
23+
pip==19.0.3
2324
pkginfo==1.4.2
2425
pluggy==0.8.0
2526
py==1.7.0
@@ -29,8 +30,9 @@ pyparsing==2.3.0
2930
pytest==4.0.1
3031
pytz==2018.7
3132
readme-renderer==24.0
32-
requests==2.20.1
3333
requests-toolbelt==0.8.0
34+
requests==2.20.1
35+
setuptools==41.0.0
3436
six==1.11.0
3537
snowballstemmer==1.2.1
3638
Sphinx==1.8.2
@@ -39,7 +41,8 @@ tabulate==0.8.2
3941
toml==0.10.0
4042
tqdm==4.28.1
4143
twine==1.12.1
42-
typed-ast==1.1.0
44+
typed-ast==1.3.1
4345
Unidecode==1.0.23
4446
urllib3==1.24.1
4547
webencodings==0.5.1
48+
wheel==0.33.1

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ dev =
2929

3030
# linters
3131
black
32-
mypy
32+
mypy==0.700
3333
pyflakes
3434

3535
# tests

0 commit comments

Comments
 (0)