From 41a567e3029093b7e82f5dd490b335fb7fd1ae20 Mon Sep 17 00:00:00 2001 From: Dimitri Papadopoulos Orfanos <3234522+DimitriPapadopoulos@users.noreply.github.com> Date: Wed, 16 Oct 2024 00:04:10 +0200 Subject: [PATCH] Apply ruff/pycodestyle preview rule E262 (#2370) E262 Inline comment should start with `# ` Co-authored-by: Joe Hamman --- tests/v3/test_indexing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/v3/test_indexing.py b/tests/v3/test_indexing.py index 0ea9cda39d..b3a1990686 100644 --- a/tests/v3/test_indexing.py +++ b/tests/v3/test_indexing.py @@ -683,7 +683,7 @@ def test_get_orthogonal_selection_2d(store: StorePath) -> None: with pytest.raises(IndexError): z.get_orthogonal_selection(selection_2d_bad) # type: ignore[arg-type] with pytest.raises(IndexError): - z.oindex[selection_2d_bad] # type: ignore[index] + z.oindex[selection_2d_bad] # type: ignore[index] def _test_get_orthogonal_selection_3d(