Skip to content

Commit 7bc774d

Browse files
committed
Ignore flake8 warnings in intro-to-bokeh code snippets
1 parent 08c0cc1 commit 7bc774d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

intro-to-bokeh/code-snippets/east-west-gridplot-layout.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@
1515
west_fig.title.text = "Western Conference" # noqa
1616

1717
# Configure the gridplot
18-
east_west_gridplot = gridplot([[west_fig, east_fig]], toolbar_location="right") # noqa
18+
east_west_gridplot = gridplot(
19+
[[west_fig, east_fig]], toolbar_location="right" # noqa
20+
)
1921

2022
# Plot the two visualizations in a horizontal configuration
2123
show(east_west_gridplot) # noqa

0 commit comments

Comments
 (0)