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! While you're at it, check out some resources Treehouse students have shared here.
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 trialBlessing Nyamayedenga
6,283 Pointstime_machine chalenge
hey guys im confused here I keep getting the error "int" object has no starter attribute
import datetime
def delorean(ahead):
starter = datetime.datetime(2015, 10, 21, 16, 29)
return starter.replace(hour=ahead.starter+ahead)
1 Answer
Eric Cahanin
14,869 PointsThe argument passed to the function delorean is an integer, so the part of your last line where you have "ahead.starter" is giving you the error - integer doesn't have an attribute of starter.
I don't remember the method covered in the lesson, but you can look into the timedelta function that's part of the datetime module. That will allow you to add an integer number of hours to a datetime.