Skip to content

Commit cbf0b9e

Browse files
committed
🧪💅 Lower-case bools in MyPy config
1 parent b253381 commit cbf0b9e

1 file changed

Lines changed: 11 additions & 11 deletions

File tree

.mypy.ini

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,34 @@
11
[mypy]
22
python_version = 3.8
3-
color_output = True
4-
error_summary = True
3+
color_output = true
4+
error_summary = true
55
files =
66
packaging/,
77
tests/,
88
yarl/
99

10-
# check_untyped_defs = True
10+
# check_untyped_defs = true
1111

12-
# disallow_untyped_calls = True
13-
# disallow_untyped_defs = True
14-
# disallow_any_generics = True
12+
# disallow_untyped_calls = true
13+
# disallow_untyped_defs = true
14+
# disallow_any_generics = true
1515

1616
enable_error_code =
1717
ignore-without-code
1818

1919
follow_imports = normal
2020

21-
ignore_missing_imports = False
21+
ignore_missing_imports = false
2222

2323
pretty = true
2424

2525
show_column_numbers = true
2626
show_error_codes = true
27-
strict_optional = True
27+
strict_optional = true
2828

29-
warn_no_return = True
30-
warn_redundant_casts = True
31-
warn_unused_ignores = True
29+
warn_no_return = true
30+
warn_redundant_casts = true
31+
warn_unused_ignores = true
3232

3333
[mypy-Cython.*]
3434
ignore_missing_imports = true

0 commit comments

Comments
 (0)