Skip to content

Commit 3f6480b

Browse files
fixed lint issue
1 parent 2a72a42 commit 3f6480b

File tree

7 files changed

+10
-95
lines changed

7 files changed

+10
-95
lines changed

.github/workflows/pylint.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,4 @@ jobs:
2222
- name: Run flake8 and pylint
2323
run: |
2424
flake8 --config=ClientAdvisor/App/.flake8 ClientAdvisor/App
25-
pylint --rcfile=ClientAdvisor/App/.pylintrc ClientAdvisor/App
26-
flake8 --config=ResearchAssistant/App/.flake8 ResearchAssistant/App
27-
pylint --rcfile=ResearchAssistant/App/.pylintrc ResearchAssistant/App
25+
flake8 --config=ResearchAssistant/App/.flake8 ResearchAssistant/App

ClientAdvisor/App/.flake8

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
[flake8]
22
max-line-length = 88
3-
extend-ignore = E501, E203, W503, G004, G200
4-
exclude = .venv, frontend
3+
extend-ignore = E501
4+
exclude = .venv, frontend
5+
ignore = E203, W503

ClientAdvisor/App/.pylintrc

Lines changed: 0 additions & 42 deletions
This file was deleted.

ClientAdvisor/App/requirements-dev.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ httpx==0.28.0
1515
flake8==7.1.1
1616
black==24.8.0
1717
autoflake==2.3.1
18-
isort==5.13.2pytest-asyncio==0.24.0
19-
pytest-cov==5.0.0
20-
isort==5.13.2
18+
isort==5.13.2
19+
pytest-asyncio==0.24.0
20+
pytest-cov==5.0.0

ClientAdvisor/App/requirements.txt

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,9 @@ httpx==0.28.0
1616

1717
# Linting and formatting tools
1818
flake8==7.1.1
19-
flake8-logging-format==0.9.0
2019
black==24.8.0
2120
autoflake==2.3.1
2221
isort==5.13.2
23-
pylint==2.15.10
24-
astroid==2.12.13
2522

2623
# Testing tools
2724
pytest>=8.2,<9 # Compatible version for pytest-asyncio

ResearchAssistant/App/.flake8

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
[flake8]
22
max-line-length = 88
3-
extend-ignore = E501, E203, G004
4-
exclude = .venv, frontend
3+
extend-ignore = E501
4+
exclude = .venv, frontend
5+
ignore = E203, W503

ResearchAssistant/App/.pylintrc

Lines changed: 0 additions & 40 deletions
This file was deleted.

0 commit comments

Comments
 (0)