summaryrefslogtreecommitdiff
path: root/tests/functional/s/statement_without_effect_py36.py
blob: 841ed5bd95ae62b80e359be44e871e0bd67e4229 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
"""Test for statements without effects."""
# pylint: disable=too-few-public-methods


class ClassLevelAttributeTest:
    """ test attribute docstrings. """

    some_variable: int = 42
    """Data docstring"""

    some_other_variable: int = 42
    """Data docstring"""

    def func(self):
        """Some Empty Docstring"""

    # +1: [pointless-string-statement]
    """useless"""