Configure isort (#2136)

* Configure isort

* Fix whitespace

* Line length, make THIRDPARTY the default
This commit is contained in:
Simon-Martin Schröder 2020-06-16 20:36:19 +02:00 committed by GitHub
parent 022ba5c667
commit a5736d244f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -61,3 +61,8 @@ convention = pep257
# D202: Ignore a blank line after docstring (collision with Python Black in decorators)
add-ignore = D104,D107,D202
max-line-length = 120
[tool:isort]
known_first_party = pytorch_lightning,tests
default_section=THIRDPARTY
line_length=120