From eb28dcae48d7cb56699d494bc1b9d16aa5157946 Mon Sep 17 00:00:00 2001 From: Daniel Hieber Date: Wed, 4 Sep 2024 16:08:13 +0200 Subject: [PATCH] fix: update docu --- .github/flake8.cfg | 4 ++++ .github/{.isort.cfg => isort.cfg} | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) rename .github/{.isort.cfg => isort.cfg} (53%) diff --git a/.github/flake8.cfg b/.github/flake8.cfg index 25ae256d..8b184567 100644 --- a/.github/flake8.cfg +++ b/.github/flake8.cfg @@ -8,6 +8,10 @@ extend-ignore = # ignore multi-statement per line (because of 'name: type' error) E731, # allow lambdas + E265, + # ignore block comment should start with '# ' + E231, + # ignore missing whitespace after ',' W503 # ignore line break before binary operator max-line-length = 120 diff --git a/.github/.isort.cfg b/.github/isort.cfg similarity index 53% rename from .github/.isort.cfg rename to .github/isort.cfg index 302b6d5f..405734ac 100644 --- a/.github/.isort.cfg +++ b/.github/isort.cfg @@ -3,5 +3,5 @@ src_paths=aucmedi line_length=120 known_first_party=aucmedi import_heading_stdlib = "Python Standard Library" -import_heading_thirdparty = "External Libraries" -import_heading_firstparty = "Internal libraries/scripts" +import_heading_thirdparty = "Third Party Libraries" +import_heading_firstparty = "Internal Modules"