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:
class Color(object):
...
This is not necessary in Python 3.x.
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:
class Color(object):
...
This is not necessary in Python 3.x.