Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
HakonSohoel committed Dec 3, 2024
1 parent ceaae7e commit 80b6700
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions python/tests/rd_tests/test_sum.py
Original file line number Diff line number Diff line change
Expand Up @@ -740,12 +740,13 @@ def test_pandas2_compatibility_dataframe_index(self):
path = os.path.join(self.TESTDATA_ROOT, "local/ECLIPSE/cp_simple3/SHORT.UNSMRY")
smry = Summary(path)
try:
smry.pandas_frame(time_index=smry.time_range(interval="1Y"), column_keys=["WELL:NAME"])
smry.pandas_frame(
time_index=smry.time_range(interval="1Y"), column_keys=["WELL:NAME"]
)
except TypeError as err:
pytest.fail(repr(err))



def create_time_vector(lst):
vec = TimeVector()
for l in lst:
Expand Down

0 comments on commit 80b6700

Please sign in to comment.