This commit is contained in:
Pratham Chauhan
2023-04-05 22:16:00 +05:30
parent eedd885683
commit efb07fafb3
4 changed files with 111 additions and 91 deletions

4
.github/ruff.toml vendored
View File

@@ -1,4 +1,8 @@
# Enable pycodestyle (`E`) codes
select = ["E"]
# E402 module level import not at top of file
# E722 do not use bare 'except'
ignore = ["E402", "E722"]
exclude = ["*_pb2.py", "*_pb2.pyi"]