BUG/DOC: Subtraction is what I meant there...

This commit is contained in:
Scott Sanderson
2015-10-05 11:29:22 -04:00
parent 7ea24c20c8
commit b949748467
+1 -1
View File
@@ -500,7 +500,7 @@ class CustomFactor(RequiredWindowLengthMixin, CustomTermMixin, Factor):
highest_highs = nanmax(axis=0)
lowest_lows = nanmin(axis=0)
out[:] = highest_highs = lowest_lows
out[:] = highest_highs - lowest_lows
# Doesn't require passing inputs or window_length because they're
# pre-declared as defaults