Skip to content

Commit 3075c40

Browse files
László Vaskóvlaci
authored andcommitted
chore(lint): enable flak8-debugger ruff rules
- T100 Import for `pdb` found https://beta.ruff.rs/docs/rules/#flake8-debugger-t10
1 parent 7115a18 commit 3075c40

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ select = [
8383
"S", # flake8-bandit
8484
"SIM", # flake8-simplify
8585
"SLF", # flake8-self
86+
"T10", # flake8-debugger
8687
"T20", # flake8-print
8788
"TRY", # tryceratops
8889
"UP", # pyupgrade

unblob/logging.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import logging
2-
import pdb
2+
import pdb # noqa: T100
33
import sys
44
from os import getpid
55
from pathlib import Path

0 commit comments

Comments
 (0)