Skip to content

Commit

Permalink
allow for whitespace after statement
Browse files Browse the repository at this point in the history
  • Loading branch information
clavedeluna committed Dec 29, 2023
1 parent e3fe1b4 commit 67a644e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ repos:
src/core_codemods/docs/.*|
src/codemodder/dependency.py |
integration_tests/.*|
tests/codemods/test_remove_debug_breakpoint.py
tests/codemods/test_remove_debug_breakpoint.py |
tests/test_codemodder.py
)$
- id: check-added-large-files
Expand Down
2 changes: 1 addition & 1 deletion tests/codemods/test_remove_debug_breakpoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def something():
expected = """\
def something():
var = 1
print(var);
print(var);
something()
"""
self.run_and_assert(tmpdir, dedent(input_code), dedent(expected))
Expand Down

0 comments on commit 67a644e

Please sign in to comment.