-
-
Notifications
You must be signed in to change notification settings - Fork 7.9k
Made a function wrapper to examples/api/two_scales.py #3582
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
@@ -1,44 +1,86 @@ | |||
#!/usr/bin/env python | |||
""" | |||
#!/usr/bin/env pythoni |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is there an extra 'i'?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That's a typo. Let me recommit
Sent from my iPhone
On Sep 27, 2014, at 4:23 PM, Thomas A Caswell notifications@github.com wrote:
In examples/api/two_scales.py:
@@ -1,44 +1,86 @@
-#!/usr/bin/env python
-"""
+#!/usr/bin/env pythoni
Why is there an extra 'i'?—
Reply to this email directly or view it on GitHub.
ax2.plot(time, data2, param2_dic['color'] + param2_dic['style']) | ||
ax2.set_ylabel('sin', color=param2_dic['color']) | ||
color_y_axes(ax2, param2_dic['color']) | ||
return plt.show() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should return the artists (plt.show()
returns None
)
Superseded by #7831 |
No description provided.