Bump to mypy-protobuf 3.3.0 (#8612)

* Bump to mypy-protobuf 3.3.0

* Remove some ignores for formatting
This commit is contained in:
Nipunn Koorapati
2022-08-25 23:24:11 -07:00
committed by GitHub
parent 712b265a16
commit 7beaebff40
17 changed files with 1108 additions and 792 deletions

View File

@@ -1,15 +1,17 @@
[tool.black]
line_length = 130
target_version = ["py310"]
force-exclude = ".*_pb2.pyi"
skip_magic_trailing_comma = true
# Exclude protobuf files because they have long line lengths
# Ideally, we could configure black to allow longer line lengths
# for just these files, but doesn't seem possible yet.
force-exclude = ".*_pb2.pyi"
[tool.isort]
profile = "black"
combine_as_imports = true
line_length = 130
skip = [".git", ".github", ".venv"]
skip_glob = "*_pb2.pyi"
extra_standard_library = [
"typing_extensions",
"_typeshed",