Skip to content

Commit

Permalink
Docs clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
parafoxia committed Jan 30, 2021
1 parent 49f5b17 commit b0b5d2f
Showing 1 changed file with 2 additions and 11 deletions.
13 changes: 2 additions & 11 deletions analytix/youtube/analytics.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,6 @@
class BasicYouTubeAnalytics(YouTubeAnalytics):
"""A class to retrieve basic user activity data. This typically returns a single row of totted up metrics based on the filters provided.
.. note::
The retrieve method works identically to the YouTubeAnalytics class.
Args:
service (YouTubeService): The YouTube service to perform the operation on.
by_province (bool): Whether to get data for provinces or countries. Defaults to False.
Expand All @@ -38,8 +34,7 @@ def __init__(self, service, by_province=False):

@property
def by_province(self):
"""A Boolean shortcut to change the list of allowed metrics, dimensions, and filter by changing whether the data is fetched by province.
"""
"""A Boolean shortcut to change the list of allowed metrics, dimensions, and filters by changing whether the data is fetched by province."""
return self._by_province

@by_province.setter
Expand Down Expand Up @@ -70,10 +65,6 @@ def _check_features(self, metrics, dimensions, filters):
class TimeBasedYouTubeAnalytics(YouTubeAnalytics):
"""A class to retrieve time based analytical data.
.. note::
The retrieve method works identically to the YouTubeAnalytics class.
Args:
service (YouTubeService): The YouTube service to perform the operation on.
by_province (bool): Whether to get data for provinces or countries. Defaults to False.
Expand All @@ -91,7 +82,7 @@ def __init__(self, service, by_province=False):

@property
def by_province(self):
"""A Boolean shortcut to change the list of allowed metrics, dimensions, and filter by changing whether the data is fetched by province."""
"""A Boolean shortcut to change the list of allowed metrics, dimensions, and filters by changing whether the data is fetched by province."""
return self._by_province

@by_province.setter
Expand Down

0 comments on commit b0b5d2f

Please sign in to comment.