8000 Improvements to Sankey class by kdavies4 · Pull Request #1574 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

Improvements to Sankey class #1574

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

Merged
merged 7 commits into from
Dec 7, 2012
Merged
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
Explicitly imported Python 3.0 printfunction
  • Loading branch information
kdavies4 committed Dec 7, 2012
commit 92575e2e78275c4d6d9ac2fb5d3384557186df6f
1 change: 1 addition & 0 deletions lib/matplotlib/sankey.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"""
Module for creating Sankey diagrams using matplotlib
"""
from __future__ import print_function
__author__ = "Kevin L. Davies"
__credits__ = ["Yannick Copin"]
__license__ = "BSD"
Expand Down
0