ソースを参照

Fix _has_[gs]etter in Auto KWArgs

Need to check if f[gs]et is not None.
master
Nate Bohman 4年前
コミット
e99f6053a1
署名者: Nate Bohman <natrinicle@gmail.com> GPGキーID: C10546A54ABA1CE5
1個のファイルの変更2行の追加2行の削除
  1. +2
    -2
      python_utils/kwargs_init.py

+ 2
- 2
python_utils/kwargs_init.py ファイルの表示

@@ -18,14 +18,14 @@ class AutoKWArgs(object):
"""Check if property has getter."""
class_attribute = getattr(type(self), property_key, None)
if isinstance(class_attribute, property):
return class_attribute.fget is None
return class_attribute.fget is not None
return False

def _has_setter(self, property_key):
"""Check if property has setter."""
class_attribute = getattr(type(self), property_key, None)
if isinstance(class_attribute, property):
return class_attribute.fset is None
return class_attribute.fset is not None
return False

@property

読み込み中…
キャンセル
保存