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

Skip to content

Commit f3b7821

Browse files
committed
removing variables that are defined and not used.
1 parent 4363436 commit f3b7821

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

plotly/graph_objs/figure_factory.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1140,8 +1140,8 @@ def __init__(self, x, y, u, v,
11401140
self.end_x = []
11411141
self.end_y = []
11421142
self.scale_uv()
1143-
barb_x, barb_y = self.get_barbs()
1144-
arrow_x, arrow_y = self.get_quiver_arrows()
1143+
self.get_barbs()
1144+
self.get_quiver_arrows()
11451145

11461146
def scale_uv(self):
11471147
"""
@@ -1284,8 +1284,8 @@ def __init__(self, x, y, u, v,
12841284
self.st_x = []
12851285
self.st_y = []
12861286
self.get_streamlines()
1287-
streamline_x, streamline_y = self.sum_streamlines()
1288-
arrows_x, arrows_y = self.get_streamline_arrows()
1287+
self.sum_streamlines()
1288+
self.get_streamline_arrows()
12891289

12901290
def blank_pos(self, xi, yi):
12911291
"""

0 commit comments

Comments
 (0)