mirror of
https://github.com/pre-commit/pre-commit-hooks.git
synced 2026-04-10 13:24:18 +00:00
Add "pydevd_pycharm" to list of debug statements
This commit is contained in:
parent
f7dd0c05bd
commit
53a05b952c
1 changed files with 10 additions and 1 deletions
|
|
@ -7,7 +7,16 @@ from typing import Optional
|
||||||
from typing import Sequence
|
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):
|
class Debug(NamedTuple):
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue