Breaking changes
Turned aiogoogle's param validation logic off by default.
This shouldn't affect you unless you were relying on `ValidationError`s to catch input errors.
Now that it's off by default, a 400 error will be thrown with the details of the bad request printed. The details are returned by Google in the JSON body of the response.
For more context on why this feature got turned off by default please read issue 69
If you want to keep using Aiogoogle's internal validation logic, pass `validate=True` to either the API method call e.g. `youtube.videos.list(validate=False)` or to aiogoogle.discover e.g. `aiogoogle.discover('youtube', 'v3', validate=True)`.