Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
black
  • Loading branch information
nicolaskruchten committed Aug 5, 2021
commit 6ef46bfa2a7ea6613af77b8655f6ff36d7f9212d
14 changes: 3 additions & 11 deletions packages/python/plotly/plotly/express/_chart_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,9 +204,7 @@ def density_heatmap(
z=[
"For `density_heatmap` and `density_contour` these values are used as the inputs to `histfunc`.",
],
histfunc=[
"The arguments to this function are the values of `z`.",
],
histfunc=["The arguments to this function are the values of `z`.",],
),
)

Expand Down Expand Up @@ -471,9 +469,7 @@ def histogram(
args=locals(),
constructor=go.Histogram,
trace_patch=dict(
histnorm=histnorm,
histfunc=histfunc,
cumulative=dict(enabled=cumulative),
histnorm=histnorm, histfunc=histfunc, cumulative=dict(enabled=cumulative),
),
layout_patch=dict(barmode=barmode, barnorm=barnorm),
)
Expand Down Expand Up @@ -533,11 +529,7 @@ def violin(
args=locals(),
constructor=go.Violin,
trace_patch=dict(
points=points,
box=dict(visible=box),
scalegroup=True,
x0=" ",
y0=" ",
points=points, box=dict(visible=box), scalegroup=True, x0=" ", y0=" ",
),
layout_patch=dict(violinmode=violinmode),
)
Expand Down
5 changes: 1 addition & 4 deletions packages/python/plotly/plotly/express/_doc.py
Original file line number Diff line number Diff line change
Expand Up @@ -325,10 +325,7 @@
"Setting this value is recommended when using `plotly.express.colors.diverging` color scales as the inputs to `color_continuous_scale`.",
],
size_max=["int (default `20`)", "Set the maximum mark size when using `size`."],
markers=[
"boolean (default `False`)",
"If `True`, markers are shown on lines.",
],
markers=["boolean (default `False`)", "If `True`, markers are shown on lines.",],
log_x=[
"boolean (default `False`)",
"If `True`, the x-axis is log-scaled in cartesian coordinates.",
Expand Down