SyntaxFix
Write A Post
Hire A Developer
Questions
Use:
import color class Color(color.Color): ...
If this were Python 2.x, you would also want to derive color.Color from object, to make it a new-style class:
color.Color
object
class Color(object): ...
This is not necessary in Python 3.x.