Skip to content

Commit aef3977

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 2ca32ec commit aef3977

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

zndraw/analyse/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def run(self, vis):
4747
x="step",
4848
y=df.columns,
4949
title="Distance between selected particles",
50-
render_mode="svg" # This is important, otherwise openGL will be used
50+
render_mode="svg", # This is important, otherwise openGL will be used
5151
# and there can/will be issues with three.js
5252
)
5353
if self.smooth:

zndraw/analyse/mda.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def run(self, vis) -> None:
5757
x=result.bins,
5858
y=result.rdf,
5959
# title="Distance between selected particles",
60-
render_mode="svg" # This is important, otherwise openGL will be used
60+
render_mode="svg", # This is important, otherwise openGL will be used
6161
# and there can/will be issues with three.js
6262
)
6363

@@ -88,7 +88,7 @@ def run(self, vis: "ZnDraw") -> None:
8888
fig = px.line(
8989
x=lagtimes,
9090
y=MSD.results.timeseries,
91-
render_mode="svg" # This is important, otherwise openGL will be used
91+
render_mode="svg", # This is important, otherwise openGL will be used
9292
# and there can/will be issues with three.js
9393
)
9494
vis.figure = fig.to_json()

0 commit comments

Comments
 (0)