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

Skip to content

Commit 39c7b55

Browse files
committed
Removed unnecessary imports
1 parent 79dce7c commit 39c7b55

File tree

3 files changed

+1
-6
lines changed

3 files changed

+1
-6
lines changed

examples/api/sankey_demo_basics.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,8 @@
22
"""
33
import numpy as np
44
import matplotlib.pyplot as plt
5-
import sys
65

76
from matplotlib.sankey import Sankey
8-
from itertools import cycle
97

108

119
# Example 1 -- Mostly defaults

examples/api/sankey_demo_links.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
"""Demonstrate the Sankey class by producing a long chain of connections.
1+
"""Demonstrate/test the Sankey class by producing a long chain of connections.
22
"""
33
import numpy as np
44
import matplotlib.pyplot as plt
5-
import sys
65

76
from matplotlib.sankey import Sankey
87
from itertools import cycle

examples/api/sankey_demo_rankine.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,8 @@
22
"""
33
import numpy as np
44
import matplotlib.pyplot as plt
5-
import sys
65

76
from matplotlib.sankey import Sankey
8-
from itertools import cycle
97

108
fig = plt.figure(figsize=(8, 12))
119
ax = fig.add_subplot(1, 1, 1, xticks=[], yticks=[],

0 commit comments

Comments
 (0)