Skip to content

Commit 3aae1de

Browse files
committed
Remove unnecessary docstrings
1 parent d9fd597 commit 3aae1de

3 files changed

Lines changed: 3 additions & 33 deletions

File tree

src/mdio/builder/templates/seismic_3d_obn.py

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,7 @@
99

1010

1111
class Seismic3DObnReceiverGathersTemplate(AbstractDatasetTemplate):
12-
"""Seismic 3D OBN (Ocean Bottom Node) receiver gathers template.
13-
14-
A generalized template for OBN field records that are optimized for:
15-
- Common-receiver access
16-
- Common-shot access
17-
18-
It can also store all the shot-lines of a survey in one MDIO if needed.
19-
20-
Args:
21-
data_domain: The domain of the dataset.
22-
"""
12+
"""Seismic 3D OBN (Ocean Bottom Node) receiver gathers template."""
2313

2414
def __init__(self, data_domain: SeismicDataDomain = "time"):
2515
super().__init__(data_domain=data_domain)

src/mdio/builder/templates/seismic_3d_obn_single_component.py

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,7 @@
99

1010

1111
class Seismic3DObnSingleComponentGathersTemplate(AbstractDatasetTemplate):
12-
"""Seismic 3D OBN (Ocean Bottom Node) single-component gathers template.
13-
14-
A generalized template for single-component OBN field records that are optimized for:
15-
- Common-receiver access
16-
- Common-shot access
17-
18-
It can also store all the shot-lines of a survey in one MDIO if needed.
19-
20-
Args:
21-
data_domain: The domain of the dataset.
22-
"""
12+
"""Seismic 3D OBN (Ocean Bottom Node) single-component gathers template."""
2313

2414
def __init__(self, data_domain: SeismicDataDomain = "time"):
2515
super().__init__(data_domain=data_domain)

src/mdio/builder/templates/seismic_3d_shot_receiver_line.py

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,7 @@
99

1010

1111
class Seismic3DShotReceiverLineGathersTemplate(AbstractDatasetTemplate):
12-
"""Seismic 3D shot-ordered gathers with receiver lines template.
13-
14-
A generalized template for land or OBC field records that are optimized for:
15-
- Common-shot access
16-
- Common-receiver-line access
17-
18-
It can also store all the shot-lines of a survey in one MDIO if needed.
19-
20-
Args:
21-
data_domain: The domain of the dataset.
22-
"""
12+
"""Seismic 3D shot-ordered gathers with receiver lines template."""
2313

2414
def __init__(self, data_domain: SeismicDataDomain = "time"):
2515
super().__init__(data_domain=data_domain)

0 commit comments

Comments
 (0)