Skip to content

Commit

Permalink
fixing broken doc string
Browse files Browse the repository at this point in the history
  • Loading branch information
Teekeks committed Oct 9, 2020
1 parent 6ce98a3 commit a3b880a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions twitchAPI/twitch.py
Original file line number Diff line number Diff line change
Expand Up @@ -266,15 +266,15 @@ def get_extension_analytics(self,
:param str extension_id: If this is specified, the returned URL points to an analytics report for just the specified
extension.
:param int first: Maximum number of objects returned, range 1 to 100, default 20
:param :class:`datetime.datetime` ended_at: Ending date/time for returned reports, if this is provided,
:param datetime.datetime ended_at: Ending date/time for returned reports, if this is provided,
`started_at` must also be specified.
:param :class:`datetime.datetime` started_at: Starting date/time for returned reports, if this is provided,
:param datetime.datetime started_at: Starting date/time for returned reports, if this is provided,
`ended_at` must also be specified.
:param :class:`~twitchAPI.types.AnalyticsReportType` report_type: Type of analytics report that is returned
:param twitchAPI.types.AnalyticsReportType report_type: Type of analytics report that is returned
:rtype: dict
:raises: :class:`twitchAPI.types.UnauthorizedException`: if user authentication is not set
:raises :class:`twitchAPI.types.MissingScopeException`: if the user authentication is missing the required scope
:raises :class:`twitchAPI.types.TwitchAuthorizationException`: if the user authentication token became invalid
:raises twitchAPI.types.UnauthorizedException: if user authentication is not set
:raises twitchAPI.types.MissingScopeException: if the user authentication is missing the required scope
:raises twitchAPI.types.TwitchAuthorizationException: if the user authentication token became invalid
and a re authentication failed
:raises ValueError: When you only supply `started_at` or `ended_at` without the other or when first is not in
range 1 to 100
Expand Down

0 comments on commit a3b880a

Please sign in to comment.