Merge pull request #13786 from quinot/bug/attributes_typo
Fix minor typo in comment
This commit is contained in:
commit
247ae748f5
1 changed files with 1 additions and 1 deletions
|
@ -153,7 +153,7 @@ class Base:
|
||||||
setattr(Base, name, property(getter, setter, deleter))
|
setattr(Base, name, property(getter, setter, deleter))
|
||||||
|
|
||||||
# Place the value into the instance so that the property can
|
# 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)
|
setattr(self, name, value.default)
|
||||||
|
|
||||||
def preprocess_data(self, ds):
|
def preprocess_data(self, ds):
|
||||||
|
|
Loading…
Reference in a new issue