Skip to content

Commit 9524fc0

Browse files
committed
chore: remove isort - ruff covers this already
1 parent 3d56701 commit 9524fc0

4 files changed

Lines changed: 0 additions & 21 deletions

File tree

.github/workflows/ci.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -137,10 +137,6 @@ jobs:
137137
freqtrade create-userdir --userdir user_data
138138
freqtrade hyperopt --datadir tests/testdata -e 6 --strategy SampleStrategy --hyperopt-loss SharpeHyperOptLossDaily --print-all
139139
140-
- name: Sort imports (isort)
141-
run: |
142-
isort --check .
143-
144140
- name: Run Ruff
145141
run: |
146142
ruff check --output-format=github

.pre-commit-config.yaml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,6 @@ repos:
2929
- SQLAlchemy==2.0.47
3030
# stages: [push]
3131

32-
- repo: https://github.com/pycqa/isort
33-
rev: "8.0.1"
34-
hooks:
35-
- id: isort
36-
name: isort (python)
37-
# stages: [push]
38-
3932
- repo: https://github.com/charliermarsh/ruff-pre-commit
4033
# Ruff version.
4134
rev: 'v0.15.5'

pyproject.toml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,6 @@ freqai_rl = [
9999
"tqdm",
100100
]
101101
develop = [
102-
"isort",
103102
"mypy",
104103
"pre-commit",
105104
"pytest-asyncio",
@@ -153,14 +152,6 @@ namespaces = true
153152
[tool.setuptools.dynamic]
154153
version = {attr = "freqtrade.__version__"}
155154

156-
[tool.isort]
157-
line_length = 100
158-
profile = "black"
159-
# multi_line_output=3
160-
lines_after_imports=2
161-
skip_glob = ["**/.env*", "**/env/*", "**/.venv/*", "**/docs/*", "**/user_data/*"]
162-
known_first_party = ["freqtrade_client"]
163-
164155
[tool.pytest.ini_options]
165156
# TODO: should be migrated to [tool.pytest] as support for this was added in 9.0
166157
log_format = "%(asctime)s %(levelname)s %(message)s"

requirements-dev.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ pytest-mock==3.15.1
1616
pytest-random-order==1.2.0
1717
pytest-timeout==2.4.0
1818
pytest-xdist==3.8.0
19-
isort==8.0.1
2019
# For datetime mocking
2120
time-machine==3.2.0
2221

0 commit comments

Comments
 (0)