1 2 3 4 5 6 7 8 9
"""Tests for inconsistent-mro.""" # pylint: disable=missing-docstring,too-few-public-methods class Str(str): pass class Inconsistent(str, Str): # [inconsistent-mro] pass