Skip to content

Commit

Permalink
Fix flake8 issues
Browse files Browse the repository at this point in the history
  • Loading branch information
deepnayak committed Sep 18, 2024
1 parent 10f88df commit 5451876
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/flake8.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
with:
ignore: E203,E701,W503,W504,BLK100
exclude: src/agent/test_query_pipeline.py
max_line_length: 118
max_line_length: 185
path: src
plugins: flake8-black flake8-isort flake8-quotes
error_classes: E,H,I00,Q00
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"git.ignoreLimitWarning": true,
"editor.formatOnSave": true,
"flake8.args": [
"--max-line-length=118"
"--max-line-length=185"
],
"[python]": {
"editor.codeActionsOnSave": {
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tool.black]
line-length = 118
line-length = 185
target-version = ['py39', 'py310', 'py311', 'py312']
include = '\.pyi?$'
required-version = '24.4.2'
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[flake8]
max-line-length = 118
max-line-length = 185
extend-ignore = E203,E701,W503,W504,BLK100
inline-quotes = double

0 comments on commit 5451876

Please sign in to comment.