Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix --no-append #628

Merged
merged 2 commits into from
Aug 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 12 additions & 3 deletions zndraw/upload.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,23 @@ def upload(
if token is None:
token = str(uuid.uuid4())
vis = ZnDraw(url=url, token=token)
typer.echo(f"Uploading to: {url}/token/{vis.token}")

if not append:
del vis[:]
size = len(vis)
print(f"Deleting {size} existing figures ...")
del vis[: size - 1]
typer.echo(f"Reading {fileio.name} ...")

generator = get_generator_from_filename(fileio)

typer.echo(f"Uploading to: {url}/token/{vis.token}")
vis.extend(list(generator))
frames = list(generator)
vis.append(frames[0])

if not append:
# There must be a frame otherwise removing everything currently doesn't work
del vis[0]
vis.extend(frames[1:])

figures = vis.figures
vis.figures = load_plots_to_json(plots) | figures
Loading