10 lines
198 B
Python
10 lines
198 B
Python
|
"""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
|