Thanks for the resources. I solved it experimenting on repl.it. Keyword arguments seemingly can come in the form:
def some_method(key: )
and that would be valid syntax. but to run it, you can’t do:
some_method('value')
The only way to run the method with the keyword value is with:
some_method(key: value)
Which is pretty intuitive, since it is a key. But not very clear, since its missing its
value. Anyways, thanks dude. I Appreciate the response, that tripped me up.