Skip to content

Commit

Permalink
fixes docstring typo
Browse files Browse the repository at this point in the history
  • Loading branch information
beaufour committed Nov 8, 2022
1 parent b0af9be commit 80c2b43
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions flickr_download/filename_handlers.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def title(pset: Optional[Photoset], photo: Photo, suffix: Optional[str]) -> str:
@param pset: the photoset
@param photo: the photo
@param suffice: optional suffix
@param suffix: optional suffix
@return: the filename
"""
if not photo.title:
Expand All @@ -41,7 +41,7 @@ def idd(_: Optional[Photoset], photo: Photo, suffix: Optional[str]) -> str:
@param pset: the photoset
@param photo: the photo
@param suffice: optional suffix
@param suffix: optional suffix
@return: the filename
"""
return f"{photo.id}{suffix}"
Expand All @@ -52,7 +52,7 @@ def title_and_id(pset: Optional[Photoset], photo: Photo, suffix: Optional[str])
@param pset: Flickr.Photoset, the photoset
@param photo: Flickr.Photo, the photo
@param suffice: str, optional suffix
@param suffix: str, optional suffix
@return: str, the filename
"""
if not photo.title:
Expand Down Expand Up @@ -85,7 +85,7 @@ def title_increment(pset: Optional[Photoset], photo: Photo, suffix: Optional[str
@param pset: Flickr.Photoset, the photoset
@param photo: Flickr.Photo, the photo
@param suffice: str, optional suffix
@param suffix: str, optional suffix
@return: str, the filename
"""
if not photo.title:
Expand Down

0 comments on commit 80c2b43

Please sign in to comment.