You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
class CSSClasses:
class Padding:
padding = "1em"
class SeparateContent(Padding):
padding = "2em"
margin = "2em"
# This causes an error
class RandomClass(SeparateContent, Padding):
# class content
pass
TypeError: Cannot create a consistent method resolution
order (MRO) for bases object, Padding, SeparateContent
Preferably this should instead warn the user that the class inherits the same class twice, or find a way to join the
class attributes together systematically.
The text was updated successfully, but these errors were encountered:
Preferably this should instead warn the user that the class inherits the same class twice, or find a way to join the
class attributes together systematically.
The text was updated successfully, but these errors were encountered: