8000 SyntaxError from Travis corrected · matplotlib/matplotlib@eaca138 · GitHub
[go: up one dir, main page]

Skip to content

Commit eaca138

Browse files
committed
SyntaxError from Travis corrected
1 parent 531004c commit eaca138

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/matplotlib/finance.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -854,10 +854,10 @@ def _missing(sequence, miss=-1):
854854
"""
855855
return np.where(np.array(sequence)==miss)[0]
856856

857-
same_length = (len(opens) == len(highs)) and (len(opens) == len(lows)) and
857+
same_length = (len(opens) == len(highs)) and (len(opens) == len(lows)) and\
858858
(len(opens) == len(closes))
859859
_missopens = _missing(opens)
860-
same_missing = (_missopens == _missing(highs).all() and (_missopens ==
860+
same_missing = (_missopens == _missing(highs).all() and (_missopens ==\
861861
_missing(lows)).all() and (_missopens == _missing(closes)).all()
862862

863863
if not (same_length and same_missing):

0 commit comments

Comments
 (0)
0