Fix minor typo in comment

pull/4420/head
Thomas Quinot 2016-01-10 10:27:50 +01:00
parent c9a5f7ea7e
commit 2eb22d5536
1 changed files with 1 additions and 1 deletions

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):