Add automatic code formatting to Requests (#6095)

This commit is contained in:
Nate Prewitt
2022-04-29 13:16:58 -06:00
committed by GitHub
parent 2d5517682b
commit 2a6f290bc0
39 changed files with 2840 additions and 2409 deletions
+13
View File
@@ -0,0 +1,13 @@
[tool.isort]
profile = "black"
src_paths = ["requests", "test"]
honor_noqa = true
[tool.pytest.ini_options]
addopts = "-p no:warnings --doctest-modules"
doctest_optionflags = "NORMALIZE_WHITESPACE ELLIPSIS"
minversion = "6.2"
testpaths = [
"requests",
"tests",
]