Skip to content

Commit c767007

Browse files
committed
fixed documentation comment style
1 parent 674dd26 commit c767007

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: yt_stats.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def extract_all(self):
1616
self.get_channel_video_data()
1717

1818
def get_channel_statistics(self):
19-
'''Extract the channel statistics'''
19+
"""Extract the channel statistics"""
2020
print('get channel statistics...')
2121
url = f'https://www.googleapis.com/youtube/v3/channels?part=statistics&id={self.channel_id}&key={self.api_key}'
2222
pbar = tqdm(total=1)
@@ -35,7 +35,7 @@ def get_channel_statistics(self):
3535
return data
3636

3737
def get_channel_video_data(self):
38-
'''Extract all video information of the channel'''
38+
"Extract all video information of the channel"
3939
print('get video data...')
4040
channel_videos, channel_playlists = self._get_channel_content(limit=50)
4141

0 commit comments

Comments
 (0)