blob: 59745ce2bade00fef88026bb34cff67f81ec07b6 [file] [log] [blame]
"""Test for statements without effects."""
# pylint: disable=too-few-public-methods, useless-object-inheritance
class ClassLevelAttributeTest(object):
""" 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"""