Skip to content

Commit 6aae637

Browse files
authored
remove now-obsolete lines in streamline ff
1 parent e84b58e commit 6aae637

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

packages/python/plotly/plotly/figure_factory/_streamline.py

-2
Original file line numberDiff line numberDiff line change
@@ -383,13 +383,11 @@ def get_streamline_arrows(self):
383383

384384
# Combine arrays into array
385385
arrows_x = np.array([point1_x, arrow_end_x, point2_x, space])
386-
arrows_x = np.array(arrows_x)
387386
arrows_x = arrows_x.flatten("F")
388387
arrows_x = arrows_x.tolist()
389388

390389
# Combine arrays into array
391390
arrows_y = np.array([point1_y, arrow_end_y, point2_y, space])
392-
arrows_y = np.array(arrows_y)
393391
arrows_y = arrows_y.flatten("F")
394392
arrows_y = arrows_y.tolist()
395393

0 commit comments

Comments
 (0)