Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions compuglobal/models/comic.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ def from_screencap(

@property
def encoded(self) -> str:
"""Get the base 64 encoded representation of this panel.
"""The base 64 encoded representation of this panel.

Returns
-------
Expand Down Expand Up @@ -284,7 +284,7 @@ def build_comic_overlays(

@property
def encoded(self) -> str:
"""Get the base 64 encoded representation of this comic strip.
"""The base 64 encoded representation of this comic strip.

Returns
-------
Expand Down
4 changes: 2 additions & 2 deletions compuglobal/models/stream.py
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ def build_stream_overlays(

@property
def caption(self) -> str:
"""Get the entire caption of the Stream (all overlays) as a string.
"""The entire caption of the Stream (all overlays) as a string.

Returns
-------
Expand All @@ -219,7 +219,7 @@ def caption(self) -> str:

@property
def encoded(self) -> str:
"""Get the base 64 encoded representation of this stream's overlays.
"""The base 64 encoded representation of this stream's overlays.

Returns
-------
Expand Down
2 changes: 1 addition & 1 deletion compuglobal/models/subtitle.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class Subtitle(BaseCompuGlobalModel):

@property
def duration(self) -> int:
"""Get the duration of the subtitle in milliseconds.
"""The duration of the subtitle in milliseconds.

Returns
-------
Expand Down
Loading
Loading