Skip to content

Commit 4c651f9

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 7c3f665 commit 4c651f9

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

pre_commit_hooks/debug_statement_hook.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
DEBUG_CALL_STATEMENTS = {
2424
'breakpoint',
25-
'print'
25+
'print',
2626
}
2727

2828

tests/debug_statement_hook_test.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ def test_finds_breakpoint():
3030
visitor = DebugStatementParser()
3131
visitor.visit(ast.parse('breakpoint()'))
3232
assert visitor.breakpoints == [Debug(1, 0, 'breakpoint', 'called')]
33-
34-
35-
def test_finds_print():
33+
34+
35+
def test_finds_print():
3636
visitor = DebugStatementParser()
3737
visitor.visit(ast.parse('print()'))
3838
assert visitor.breakpoints == [Debug(1, 0, 'print', 'called')]

0 commit comments

Comments
 (0)