Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Oct 21, 2024
1 parent 383d24c commit 28ed317
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion examples/ipynb/notebook_showcase_k3d.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,10 @@
"metadata": {},
"outputs": [],
"source": [
"import gustaf as gus\n",
"import vedo\n",
"\n",
"import gustaf as gus\n",
"\n",
"vedo.settings.default_backend = \"k3d\""
]
},
Expand Down
8 changes: 4 additions & 4 deletions gustaf/show.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,15 +72,15 @@ def show(*args, **kwargs):
N = len(args)
offs = kwargs.get("offscreen", False)
interact = kwargs.get("interactive", True)
plt = kwargs.get("vedoplot", None)
plt = kwargs.get("vedoplot")
skip_clear = kwargs.get("skip_clear", False)
close = kwargs.get("close", None)
close = kwargs.get("close")
size = kwargs.get("size", "auto")
cam = kwargs.get("cam", None)
cam = kwargs.get("cam")
title = kwargs.get("title", "gustaf")
background = kwargs.get("background", "white")
return_show_list = kwargs.get("return_showable_list", False)
axes = kwargs.get("axes", None)
axes = kwargs.get("axes")

def clear_vedo_plotter(plotter, num_renderers, skip_cl=skip_clear):
"""enough said."""
Expand Down

0 comments on commit 28ed317

Please sign in to comment.