We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e604c11 commit 1ea0e9aCopy full SHA for 1ea0e9a
Makefile
@@ -6,7 +6,7 @@ source_code_check_format:
6
7
.PHONY: source_code_format
8
source_code_format:
9
- black --line-length 120 --target-version py37 . && \
+ black --line-length 120 --target-version py39 . && \
10
isort .
11
$(MAKE) source_code_check_format
12
setup.cfg
@@ -30,4 +30,7 @@ py_version=39
30
known_local_folder=kernl
31
32
[flake8]
33
-max-line-length = 120
+max-line-length = 120
34
+extend-ignore =
35
+ # See https://github.com/PyCQA/pycodestyle/issues/373
36
+ E203,
0 commit comments