hasgeek / funnel

Missing module/function docstring PY-D0003
Documentation
Minor
3 occurrences in this check
Docstring missing for copy_template
 900
 901    with_roles(is_self_revoked, read={'subject', 'editor'})
 902
 903    def copy_template(self: MembershipType, **kwargs) -> MembershipType: 904        return type(self)(
 905            user=self.user,
 906            email_address=self.email_address,
Docstring missing for phone_number_id
 784
 785    @declared_attr
 786    @classmethod
 787    def phone_number_id(cls) -> Mapped[int]: 788        return sa.orm.mapped_column(
 789            sa.Integer, sa.ForeignKey('phone_number.id'), nullable=True
 790        )
Docstring missing for email_address_id
 761
 762    @declared_attr
 763    @classmethod
 764    def email_address_id(cls) -> Mapped[int]: 765        return sa.orm.mapped_column(
 766            sa.Integer, sa.ForeignKey('email_address.id'), nullable=True
 767        )