Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
epwalsh committed Jun 14, 2024
1 parent 8bdbdee commit 1a7c61f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions beaker/data_model/experiment_spec.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,7 @@ def new(
sub_path: Optional[str] = None,
beaker: Optional[str] = None,
host_path: Optional[str] = None,
weka: Optional[str] = None,
result: Optional[str] = None,
secret: Optional[str] = None,
) -> "DataMount":
Expand All @@ -177,6 +178,7 @@ def new(
:param sub_path: The :data:`sub_path`.
:param beaker: The :data:`beaker <DataSource.beaker>` argument to :class:`DataSource`.
:param host_path: The :data:`host_path <DataSource.host_path>` argument to :class:`DataSource`.
:param weka: The :data:`weka <DataSource.weka>` argument to :class:`DataSource`.
:param result: The :data:`result <DataSource.result>` argument to :class:`DataSource`.
:param url: The :data:`url <DataSource.url>` argument to :class:`DataSource`.
:param secret: The :data:`secret <DataSource.secret>` argument to :class:`DataSource`.
Expand All @@ -187,6 +189,7 @@ def new(
source=DataSource(
beaker=beaker,
host_path=host_path,
weka=weka,
result=result,
secret=secret,
),
Expand Down

0 comments on commit 1a7c61f

Please sign in to comment.