Skip to content

Commit 6eb04be

Browse files
committed
Satisfy pre-commit
1 parent 832ebab commit 6eb04be

File tree

2 files changed

+0
-18
lines changed

2 files changed

+0
-18
lines changed

src/mdio/segy/geometry.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
import numpy as np
1414
from numpy.lib import recfunctions as rfn
1515

16-
from mdio.segy.exceptions import GridOverrideIncompatibleError
1716
from mdio.segy.exceptions import GridOverrideKeysError
1817
from mdio.segy.exceptions import GridOverrideMissingParameterError
1918
from mdio.segy.exceptions import GridOverrideUnknownError

tests/unit/test_segy_grid_overrides.py

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@
1414
from numpy.testing import assert_array_equal
1515

1616
from mdio.core import Dimension
17-
from mdio.segy.exceptions import GridOverrideIncompatibleError
18-
from mdio.segy.exceptions import GridOverrideMissingParameterError
1917
from mdio.segy.exceptions import GridOverrideUnknownError
2018
from mdio.segy.geometry import GridOverrider
2119

@@ -131,21 +129,6 @@ def test_non_binned(self, mock_streamer_headers: dict[str, npt.NDArray]) -> None
131129
class TestStreamerGridOverrides:
132130
"""Check grid overrides for shot data with streamer acquisition."""
133131

134-
def test_missing_param(self, mock_streamer_headers: dict[str, npt.NDArray]) -> None:
135-
"""Test missing parameters for the commands."""
136-
index_names = ("shot_point", "cable", "channel")
137-
chunksize = None
138-
overrider = GridOverrider()
139-
140-
def test_incompatible_overrides(
141-
self,
142-
mock_streamer_headers: dict[str, npt.NDArray],
143-
) -> None:
144-
"""Test commands that can't be run together."""
145-
index_names = ("shot_point", "cable", "channel")
146-
chunksize = None
147-
overrider = GridOverrider()
148-
149132
def test_unknown_override(
150133
self,
151134
mock_streamer_headers: dict[str, npt.NDArray],

0 commit comments

Comments
 (0)