This website requires JavaScript.
Explore
Help
Sign In
Python
/
ruff
mirror of
https://github.com/astral-sh/ruff
Watch
1
Star
0
Fork
You've already forked ruff
0
Code
Issues
Packages
Projects
Releases
Wiki
Activity
string-preview-style
ruff
/
crates
/
ruff_linter
/
resources
/
test
/
fixtures
/
pylint
/
duplicate_bases.py
25 lines
148 B
Python
Raw
Permalink
Blame
History
###
# Errors.
###
class
A
:
.
.
.
class
B
(
A
,
A
)
:
.
.
.
###
# Non-errors.
###
class
C
:
.
.
.
class
D
(
C
)
:
.
.
.
class
E
(
A
,
C
)
:
.
.
.
Reference in New Issue
View Git Blame
Copy Permalink