We might want to consider explicit datatypes for each parameter. This issue arose from overlooking this: https://github.com/SMAPPNYU/youtube-data-api/issues/17 Like this: ``` def func(a:int, b:int) -> int: return a + b ```