Skip to content

Commit

Permalink
fix error line endings (i guess pylint 3 fixed it?)
Browse files Browse the repository at this point in the history
  • Loading branch information
DetachHead committed Oct 12, 2023
1 parent 5aa7c48 commit 1da0629
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_module_boundaries.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def test_import_from_banned_module(self):
node=next(self.node.get_children()), # type:ignore[func-returns-value]
line=1,
end_line=1,
end_col_offset=30,
end_col_offset=29,
col_offset=0,
args=("modules.foo", "modules.bar.value"),
)
Expand Down Expand Up @@ -69,7 +69,7 @@ def test_import_banned_module(self):
),
line=1,
end_line=1,
end_col_offset=28,
end_col_offset=18,
col_offset=0,
args=("modules.foo", "modules.bar"),
)
Expand Down Expand Up @@ -105,7 +105,7 @@ def test_banned_module(self):
msg_id="banned-imports",
node=next(children),
line=2,
end_line=1,
end_line=2,
end_col_offset=29,
col_offset=0,
args=("modules.foo", "modules.baz.value"),
Expand Down

0 comments on commit 1da0629

Please sign in to comment.