summaryrefslogtreecommitdiff
path: root/tests/functional/ext/docparams/parameter/missing_param_doc_required_no_doc_rgx_check_none.py
blob: ca6eb2f7eade60c7e1d9d391e3e6835d6c2d90d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
"""Tests for missing-param-doc and missing-type-doc for non-specified style docstrings
with accept-no-param-doc = no and no-docstring-rgx = ""
"""
# pylint: disable=invalid-name, unused-argument, too-few-public-methods


class MyClass:
    """test_no_docstring_rgx
    Function that matches "check no functions" 'no-docstring-rgx' config option
    No error message is emitted.
    """

    def __init__(self, my_param: int) -> None:
        """
        My init docstring
        """