From 111b669a3b43d586a46db5b67560aec5ced0e0ad Mon Sep 17 00:00:00 2001 From: tristanlatr Date: Sat, 19 Nov 2022 12:44:45 -0500 Subject: [PATCH] remove commented code --- pydoctor/model.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/pydoctor/model.py b/pydoctor/model.py index 4b887a2e2..84304a126 100644 --- a/pydoctor/model.py +++ b/pydoctor/model.py @@ -745,14 +745,6 @@ class Function(Inheritable): signature: Optional[Signature] overloads: List['FunctionOverload'] - # # Property handling is special: This attribute is used in the processing step only. - # property_decorator: Optional[ast.expr] = None - # """ - # A property decorator like C{@property} or C{@name.setter} or C{@BaseClass.name.getter} / etc. - - # C{None} if this function is not decorated with any kind of property decorator. - # """ - def setup(self) -> None: super().setup() if isinstance(self.parent, Class):