Skip to content

Commit

Permalink
flake8 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
anish29292 committed Jan 17, 2023
1 parent 767cc23 commit d7343df
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 20 deletions.
15 changes: 10 additions & 5 deletions components/lab-job-scheduler/backend/setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,16 @@ universal = false

[flake8]
ignore =
E203, # space before : (needed for how black formats slicing)
# E266, # too many leading '#' for block comment
E501, # line too long
E731, # do not assign a lambda expression, use a def
W503, # line break before binary operator
E203,
# space before : (needed for how black formats slicing)
# E266,
# too many leading '#' for block comment
E501,
# line too long
E731,
# do not assign a lambda expression, use a def
W503,
# line break before binary operator
max-line-length = 88
# select = B,C,E,F,W,T4,B9
# max-complexity = 18
Expand Down
15 changes: 10 additions & 5 deletions components/lab-mlflow-manager/backend/setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,16 @@ universal = false

[flake8]
ignore =
E203, # space before : (needed for how black formats slicing)
# E266, # too many leading '#' for block comment
E501, # line too long
E731, # do not assign a lambda expression, use a def
W503, # line break before binary operator
E203,
# space before : (needed for how black formats slicing)
# E266,
# too many leading '#' for block comment
E501,
# line too long
E731,
# do not assign a lambda expression, use a def
W503,
# line break before binary operator
max-line-length = 88
# select = B,C,E,F,W,T4,B9
# max-complexity = 18
Expand Down
15 changes: 10 additions & 5 deletions components/lab-workspace-manager/backend/setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,16 @@ universal = false

[flake8]
ignore =
E203, # space before : (needed for how black formats slicing)
# E266, # too many leading '#' for block comment
E501, # line too long
E731, # do not assign a lambda expression, use a def
W503, # line break before binary operator
E203,
# space before : (needed for how black formats slicing)
# E266,
# too many leading '#' for block comment
E501,
# line too long
E731,
# do not assign a lambda expression, use a def
W503,
# line break before binary operator
max-line-length = 88
# select = B,C,E,F,W,T4,B9
# max-complexity = 18
Expand Down
15 changes: 10 additions & 5 deletions components/template/backend/setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,16 @@ universal = false

[flake8]
ignore =
E203, # space before : (needed for how black formats slicing)
# E266, # too many leading '#' for block comment
E501, # line too long
E731, # do not assign a lambda expression, use a def
W503, # line break before binary operator
E203,
# space before : (needed for how black formats slicing)
# E266,
# too many leading '#' for block comment
E501,
# line too long
E731,
# do not assign a lambda expression, use a def
W503,
# line break before binary operator
max-line-length = 88
# select = B,C,E,F,W,T4,B9
# max-complexity = 18
Expand Down

0 comments on commit d7343df

Please sign in to comment.