Michael Ndon
commited on
Modified Function Docstrings (#929)
Browse files- pytube/__main__.py +2 -2
pytube/__main__.py
CHANGED
@@ -339,7 +339,7 @@ class YouTube:
|
|
339 |
def length(self) -> int:
|
340 |
"""Get the video length in seconds.
|
341 |
|
342 |
-
:rtype:
|
343 |
|
344 |
"""
|
345 |
return int(
|
@@ -355,7 +355,7 @@ class YouTube:
|
|
355 |
def views(self) -> int:
|
356 |
"""Get the number of the times the video has been viewed.
|
357 |
|
358 |
-
:rtype:
|
359 |
|
360 |
"""
|
361 |
return int(
|
|
|
339 |
def length(self) -> int:
|
340 |
"""Get the video length in seconds.
|
341 |
|
342 |
+
:rtype: int
|
343 |
|
344 |
"""
|
345 |
return int(
|
|
|
355 |
def views(self) -> int:
|
356 |
"""Get the number of the times the video has been viewed.
|
357 |
|
358 |
+
:rtype: int
|
359 |
|
360 |
"""
|
361 |
return int(
|