summaryrefslogtreecommitdiff
path: root/scripts/internal/git_pre_commit.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/internal/git_pre_commit.py')
-rwxr-xr-xscripts/internal/git_pre_commit.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/internal/git_pre_commit.py b/scripts/internal/git_pre_commit.py
index c86c9f93..46b3bc53 100755
--- a/scripts/internal/git_pre_commit.py
+++ b/scripts/internal/git_pre_commit.py
@@ -109,10 +109,10 @@ def main():
print("%s:%s %r" % (path, lineno, line))
return exit("space at end of line")
line = line.rstrip()
- # pdb
- if "pdb.set_trace" in line:
- print("%s:%s %s" % (path, lineno, line))
- return exit("you forgot a pdb in your python code")
+ # # pdb (now provided by flake8-debugger plugin)
+ # if "pdb.set_trace" in line:
+ # print("%s:%s %s" % (path, lineno, line))
+ # return exit("you forgot a pdb in your python code")
# # bare except clause (now provided by flake8-blind-except plugin)
# if "except:" in line and not line.endswith("# NOQA"):
# print("%s:%s %s" % (path, lineno, line))