Skip to content

Commit

Permalink
Fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
royreznik committed Feb 3, 2024
1 parent e2395c2 commit 3a93622
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/test_logic.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,9 @@ def test_group_match_equals(
],
],
)
def test_combine_groups(pattern: str, content: str, expected_groups: list[GroupMatch]) -> None:
def test_combine_groups(
pattern: str, content: str, expected_groups: list[GroupMatch]
) -> None:
matches = re.match(pattern, content)
assert matches # sanity
result = RexiApp._combine_groups(matches)
Expand Down

0 comments on commit 3a93622

Please sign in to comment.