Skip to content

Commit 879ef0a

Browse files
black
1 parent 6449e27 commit 879ef0a

File tree

1 file changed

+3
-11
lines changed

1 file changed

+3
-11
lines changed

packages/python/plotly/plotly/express/_chart_types.py

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -200,9 +200,7 @@ def density_heatmap(
200200
z=[
201201
"For `density_heatmap` and `density_contour` these values are used as the inputs to `histfunc`.",
202202
],
203-
histfunc=[
204-
"The arguments to this function are the values of `z`.",
205-
],
203+
histfunc=["The arguments to this function are the values of `z`.",],
206204
),
207205
)
208206

@@ -453,9 +451,7 @@ def histogram(
453451
args=locals(),
454452
constructor=go.Histogram,
455453
trace_patch=dict(
456-
histnorm=histnorm,
457-
histfunc=histfunc,
458-
cumulative=dict(enabled=cumulative),
454+
histnorm=histnorm, histfunc=histfunc, cumulative=dict(enabled=cumulative),
459455
),
460456
layout_patch=dict(barmode=barmode, barnorm=barnorm),
461457
)
@@ -515,11 +511,7 @@ def violin(
515511
args=locals(),
516512
constructor=go.Violin,
517513
trace_patch=dict(
518-
points=points,
519-
box=dict(visible=box),
520-
scalegroup=True,
521-
x0=" ",
522-
y0=" ",
514+
points=points, box=dict(visible=box), scalegroup=True, x0=" ", y0=" ",
523515
),
524516
layout_patch=dict(violinmode=violinmode),
525517
)

0 commit comments

Comments
 (0)