Skip to content

Commit

Permalink
use outs instead of plots
Browse files Browse the repository at this point in the history
  • Loading branch information
PythonFZ committed Apr 10, 2023
1 parent 82307cf commit 29848e8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions zntrack/fields/field.py
Original file line number Diff line number Diff line change
Expand Up @@ -225,11 +225,11 @@ def __init__(
super().__init__(*args, **kwargs)
self.plots_options = {}
self.use_global_plots = use_global_plots
# if self.use_global_plots:
# if self.dvc_option == "plots":
# self.dvc_option = "outs"
# elif self.dvc_option == "plots-no-cache":
# self.dvc_option = "outs-no-cache"
if self.use_global_plots:
if self.dvc_option == "plots":
self.dvc_option = "outs"
elif self.dvc_option == "plots-no-cache":
self.dvc_option = "outs-no-cache"
if template is not None:
self.plots_options["--template"] = pathlib.Path(template).as_posix()
if x is not None:
Expand Down

0 comments on commit 29848e8

Please sign in to comment.