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 trial

Python Dates and Times in Python (2014) Let's Build a Timed Quiz App Simple Time Machine

delorean() missing 1 required positional argument

It says I'm missing 1 positional argument. But I don't know what that means in this instance.

time_machine.py
import datetime

starter = datetime.datetime(2015, 10, 21, 16, 29)
def delorean(integer, take_string):
    if take_string == 'minutes':
        offset = datetime.timedelta(minutes=integer)
    elif take_string == 'hours':
        offset = datetime.timedelta(hours=integer)
    elif take_string == 'days':
        offset = datetime.timedelta(days=integer)
    else:
        offset = datetime.timedelta(days=integer*365)

    return starter + offset

2 Answers

Steven Parker
Steven Parker
229,771 Points

The instructions say "Write a function named delorean that takes an integer", which means one argument. But this code defines it to take two arguments, one of them happens to be named "integer".

It's also not using the constant "starter" (but needs to). Except for the name, this code would solve the Harder Time Machine challenge that comes a bit later. Did you get these two challenges mixed up?   :see_no_evil:

Oh yeah, I think I did. Thanks.