summaryrefslogtreecommitdiff
path: root/pylint/test/functional/inconsistent_mro.py
blob: 0b65068d797fa2435ba1c133d677b1df6b979adb (plain)
1
2
3
4
5
6
7
8
9
"""Tests for inconsistent-mro."""
# pylint: disable=missing-docstring,too-few-public-methods,no-init

class Str(str):
    pass


class Inconsistent(str, Str): # [inconsistent-mro]
    pass