Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community!
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trial

Ibrahim Khan
3,353 PointsTypeError while following the video on datetime. Pls help
when setting:
hour = datetime.timedelta(hours=1) hour datetime.timedelta(0, 3600) workday = hour + 9
I get a typeError:
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: unsupported operand type(s) for +: 'datetime.timedelta
' and 'int'
Pls help what i'm doing wrong.
2 Answers

KRIS NIKOLAISEN
54,944 PointsIn the video @ 3:00 he does multiplication not addition
workday = hour * 9

Ibrahim Khan
3,353 Pointsgot it thanks!