Skip to content

Commit

Permalink
Fix docstrings for the element_text() function.
Browse files Browse the repository at this point in the history
  • Loading branch information
ASmirnov-HORIS committed Apr 12, 2024
1 parent b0f7989 commit 1226e92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python-package/lets_plot/plot/theme_.py
Original file line number Diff line number Diff line change
Expand Up @@ -530,7 +530,7 @@ def element_text(
LetsPlot.setup_html()
np.random.seed(42)
data = {'x': np.random.normal(size=1000)}
ggplot(data, aes(x='x')) + geom_histogram() + \
ggplot(data, aes(x='x')) + geom_histogram() + \\
theme(axis_text=element_text(color='#cb181d', face='bold_italic', margin=[5, 10]))
"""
Expand Down

0 comments on commit 1226e92

Please sign in to comment.