Skip to content

Commit

Permalink
Fix forgotten dataset ID
Browse files Browse the repository at this point in the history
  • Loading branch information
eltos committed Jan 24, 2025
1 parent 34eb72d commit e488306
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions xplt/timestructure.py
Original file line number Diff line number Diff line change
Expand Up @@ -659,7 +659,7 @@ def create_artists(i, j, k, ax, p):
else:
return plot

self._create_artists(create_artists)
self._create_artists(create_artists, dataset_id=id)

# set data
if kwargs.get("particles") is not None or kwargs.get("timeseries") is not None:
Expand Down Expand Up @@ -1053,7 +1053,7 @@ def create_artists(i, j, k, ax, p):
pplot = None
return plot, pplot

self._create_artists(create_artists)
self._create_artists(create_artists, dataset_id=id)

# set data
if kwargs.get("particles") is not None:
Expand Down Expand Up @@ -1270,7 +1270,7 @@ def create_artists(i, j, k, ax, p):
pstep = None
return step, pstep

self._create_artists(create_artists)
self._create_artists(create_artists, dataset_id=id)

# set data
if kwargs.get("particles") is not None or kwargs.get("timeseries") is not None:
Expand Down

0 comments on commit e488306

Please sign in to comment.