BUG/DOC: Use correct close brace.

This commit is contained in:
Scott Sanderson
2015-10-06 06:49:23 -04:00
parent 1c27aa9fb1
commit 773e4cc4db
+1 -1
View File
@@ -528,7 +528,7 @@ class CustomFactor(RequiredWindowLengthMixin, CustomTermMixin, Factor):
def compute(self, today, assets, out, data):
from numpy import nanmedian
out[:} = data.nanmedian(axis=0)
out[:] = data.nanmedian(axis=0)
# Values for `inputs` and `window_length` must be passsed explitly to
# MedianValue.