Merge pull request #13786 from quinot/bug/attributes_typo

Fix minor typo in comment
This commit is contained in:
Brian Coca 2016-01-11 14:32:45 -05:00
commit 247ae748f5

View file

@ -153,7 +153,7 @@ class Base:
setattr(Base, name, property(getter, setter, deleter))
# Place the value into the instance so that the property can
# process and hold that value/
# process and hold that value.
setattr(self, name, value.default)
def preprocess_data(self, ds):