Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 46210f9

Browse files
remove b tags (plotly#1339)
1 parent 06096ee commit 46210f9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

_posts/python/fundamentals/sending-data/2015-04-09-add-traces.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@
1818

1919
data = Data( [ new_trace1 ] )
2020

21-
plot_url = py.plot(data, filename='append plot', <b>fileopt='append'</b>)
21+
plot_url = py.plot(data, filename='append plot', fileopt='append')

_posts/python/fundamentals/sending-data/2015-04-09-extend.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@
1818

1919
data = Data( [ new_data ] )
2020

21-
plot_url = py.plot(data, filename='extend plot', <b>fileopt='extend'</b>)
21+
plot_url = py.plot(data, filename='extend plot', fileopt='extend')

_posts/python/fundamentals/sending-data/2015-04-09-overwrite.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@
1616

1717
data = Data([ Scatter(x=[1, 2], y=[3, 4]) ])
1818

19-
plot_url = py.plot(data, <b>filename='my plot'</b>)
19+
plot_url = py.plot(data, filename='my plot')

0 commit comments

Comments
 (0)