mirror of
https://github.com/pre-commit/pre-commit-hooks.git
synced 2025-08-14 17:31:28 +08:00
Add "pydevd_pycharm" to list of debug statements
This commit is contained in:
@ -7,7 +7,16 @@ from typing import Optional
|
||||
from typing import Sequence
|
||||
|
||||
|
||||
DEBUG_STATEMENTS = {'pdb', 'ipdb', 'pudb', 'q', 'rdb', 'rpdb', 'wdb'}
|
||||
DEBUG_STATEMENTS = {
|
||||
'ipdb',
|
||||
'pdb',
|
||||
'pudb',
|
||||
'pydevd_pycharm',
|
||||
'q',
|
||||
'rdb',
|
||||
'rpdb',
|
||||
'wdb',
|
||||
}
|
||||
|
||||
|
||||
class Debug(NamedTuple):
|
||||
|
Reference in New Issue
Block a user