From 13ae208a0644eede438c40a4c3e35c3fc30af6a6 Mon Sep 17 00:00:00 2001 From: Ethan Dalool Date: Fri, 6 Jan 2017 18:10:19 -0800 Subject: [PATCH] Add trailing comma to kw-only args Welcome to the present! --- phototagger.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/phototagger.py b/phototagger.py index 7b36676..61f1112 100644 --- a/phototagger.py +++ b/phototagger.py @@ -336,7 +336,7 @@ class PDBAlbumMixin: *, associated_directory=None, commit=True, - photos=None + photos=None, ): ''' Create a new album. Photos can be added now or later. @@ -423,7 +423,7 @@ class PDBPhotoMixin: commit=True, do_metadata=True, do_thumbnail=True, - tags=None + tags=None, ): ''' Given a filepath, determine its attributes and create a new Photo object in the @@ -546,7 +546,7 @@ class PDBPhotoMixin: offset=None, orderby=None, warning_bag=None, - give_back_parameters=False + give_back_parameters=False, ): ''' PHOTO PROPERTIES @@ -1112,7 +1112,7 @@ class PhotoDB(PDBAlbumMixin, PDBPhotoMixin, PDBTagMixin, PDBUserMixin): *, exclude_directories=None, exclude_filenames=None, - commit=True + commit=True, ): ''' Create an album, and add the directory's contents to it recursively.