Skip to content

Commit 1e992fb

Browse files
committed
Fix incorrect case
1 parent 392e7e8 commit 1e992fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mdio/segy/_disaster_recovery_wrapper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def _reverse_single_transform(data: NDArray, transform: Transform, endianness: E
1818

1919
if isinstance(transform, ByteSwapTransform):
2020
# Reverse the endianness conversion
21-
if endianness == Endianness.Little:
21+
if endianness == Endianness.LITTLE:
2222
return data
2323

2424
reverse_transform = ByteSwapTransform(Endianness.BIG)

0 commit comments

Comments
 (0)