Skip to content

Commit fece492

Browse files
Make Pre-Commit happy
1 parent 69c5c6a commit fece492

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.pre-commit-config.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,16 @@ repos:
99
- repo: https://github.com/astral-sh/ruff-pre-commit
1010
rev: v0.13.3
1111
hooks:
12-
- id: ruff
12+
- id: ruff-check
1313
args:
1414
- --preview
1515
- --fix
1616
- --exit-non-zero-on-fix
17+
# Formatter disabled since it does not work together with COM812
18+
# - id: ruff-format
19+
# args:
20+
# - --preview
21+
# - --exit-non-zero-on-fix
1722
- repo: https://github.com/pre-commit/mirrors-mypy
1823
rev: v1.18.2
1924
hooks:

examples/futures_trading_bot_template.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515

1616
import asyncio
1717
import logging
18-
import logging.config
1918
import os
2019
import sys
2120
import traceback

0 commit comments

Comments
 (0)