diff --git a/zipline/pipeline/mixins.py b/zipline/pipeline/mixins.py index 7302f7cc..a1825101 100644 --- a/zipline/pipeline/mixins.py +++ b/zipline/pipeline/mixins.py @@ -457,5 +457,6 @@ class DownsampledMixin(StandardOutputs): return type( 'Downsampled' + other_base.__name__, (cls, other_base,), - {'__doc__': doc}, + {'__doc__': doc, + '__module__': other_base.__module__}, )