I have written the code using Visual Studio code
from datetime import date
Title = 'Actividad #$'
Complexity = 0
Time = 5 #cantidad en dias
class Activitie(Title,Complexity,Time):
"""Log your activity with this class"""
Title = 'Actividad #$'
Complexity = 0
Time = 5 #cantidad en dias
And it shows
Inheriting 'Time', which is not a class.
Inheriting 'Complexity', which is not a class.
Inheriting 'Title', which is not a class.
and ...
TypeError: metaclass conflict: the metaclass of a derived class must be a (non-strict) subclass of the metaclasses of all its bases
Thank you for any solution