We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f376a04 commit 6f0372cCopy full SHA for 6f0372c
src/mdio/segy/parsers.py
@@ -63,7 +63,7 @@ def parse_text_header(segy_handle: segyio.SegyFile) -> list[str]:
63
Returns:
64
Parsed text header in list with lines as elements.
65
"""
66
- text_header = segy_handle.text[0].decode(errors='ignore')
+ text_header = segy_handle.text[0].decode(errors="ignore")
67
text_header = [
68
text_header[char_idx : char_idx + 80]
69
for char_idx in range(0, len(text_header), 80)
0 commit comments