From e34f0c44aa8d001930f4f416af4df6a94bcd4e90 Mon Sep 17 00:00:00 2001 From: Dan LaManna Date: Wed, 5 Jun 2019 12:29:23 -0400 Subject: [PATCH] Add the rpdb debugger to the list of debugger packages --- pre_commit_hooks/debug_statement_hook.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pre_commit_hooks/debug_statement_hook.py b/pre_commit_hooks/debug_statement_hook.py index 02dd3b2..4864873 100644 --- a/pre_commit_hooks/debug_statement_hook.py +++ b/pre_commit_hooks/debug_statement_hook.py @@ -10,7 +10,7 @@ from typing import Optional from typing import Sequence -DEBUG_STATEMENTS = {'pdb', 'ipdb', 'pudb', 'q', 'rdb'} +DEBUG_STATEMENTS = {'pdb', 'ipdb', 'pudb', 'q', 'rdb', 'rpdb'} Debug = collections.namedtuple('Debug', ('line', 'col', 'name', 'reason'))