Enable Ruff's flake8-debugger checks

This commit is contained in:
Adam Turner
2022-12-29 23:46:42 +00:00
parent 7fb45a9058
commit 3bcf11c30c
2 changed files with 2 additions and 1 deletions

View File

@@ -184,6 +184,7 @@ select = [
"PLW", # pylint "PLW", # pylint
"S", # flake8-bandit "S", # flake8-bandit
"SIM", # flake8-simplify "SIM", # flake8-simplify
"T10", # flake8-debugger
"RUF100", # yesqa "RUF100", # yesqa
] ]

View File

@@ -5,7 +5,7 @@ import bdb
import locale import locale
import multiprocessing import multiprocessing
import os import os
import pdb import pdb # NoQA: T100
import sys import sys
import traceback import traceback
from os import path from os import path