Skip to content

Commit 6ef46bf

Browse files
black
1 parent b6806ff commit 6ef46bf

File tree

2 files changed

+4
-15
lines changed

2 files changed

+4
-15
lines changed

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

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -204,9 +204,7 @@ def density_heatmap(
204204
z=[
205205
"For `density_heatmap` and `density_contour` these values are used as the inputs to `histfunc`.",
206206
],
207-
histfunc=[
208-
"The arguments to this function are the values of `z`.",
209-
],
207+
histfunc=["The arguments to this function are the values of `z`.",],
210208
),
211209
)
212210

@@ -471,9 +469,7 @@ def histogram(
471469
args=locals(),
472470
constructor=go.Histogram,
473471
trace_patch=dict(
474-
histnorm=histnorm,
475-
histfunc=histfunc,
476-
cumulative=dict(enabled=cumulative),
472+
histnorm=histnorm, histfunc=histfunc, cumulative=dict(enabled=cumulative),
477473
),
478474
layout_patch=dict(barmode=barmode, barnorm=barnorm),
479475
)
@@ -533,11 +529,7 @@ def violin(
533529
args=locals(),
534530
constructor=go.Violin,
535531
trace_patch=dict(
536-
points=points,
537-
box=dict(visible=box),
538-
scalegroup=True,
539-
x0=" ",
540-
y0=" ",
532+
points=points, box=dict(visible=box), scalegroup=True, x0=" ", y0=" ",
541533
),
542534
layout_patch=dict(violinmode=violinmode),
543535
)

packages/python/plotly/plotly/express/_doc.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -325,10 +325,7 @@
325325
"Setting this value is recommended when using `plotly.express.colors.diverging` color scales as the inputs to `color_continuous_scale`.",
326326
],
327327
size_max=["int (default `20`)", "Set the maximum mark size when using `size`."],
328-
markers=[
329-
"boolean (default `False`)",
330-
"If `True`, markers are shown on lines.",
331-
],
328+
markers=["boolean (default `False`)", "If `True`, markers are shown on lines.",],
332329
log_x=[
333330
"boolean (default `False`)",
334331
"If `True`, the x-axis is log-scaled in cartesian coordinates.",

0 commit comments

Comments
 (0)