From 6a96bc4ada9384ec908b418e18293fe28f76f883 Mon Sep 17 00:00:00 2001 From: Ethan Dalool Date: Fri, 16 Dec 2016 01:37:15 -0800 Subject: [PATCH] remove trailing comma for kw-only args until 3.6 --- phototagger.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/phototagger.py b/phototagger.py index 96c21a6..69cc7a2 100644 --- a/phototagger.py +++ b/phototagger.py @@ -462,7 +462,7 @@ class PDBAlbumMixin: *, associated_directory=None, commit=True, - photos=None, + photos=None ): ''' Create a new album. Photos can be added now or later. @@ -564,7 +564,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 @@ -653,7 +653,7 @@ class PDBPhotoMixin: warn_bad_tags=False, limit=None, offset=None, - orderby=None, + orderby=None ): ''' PHOTO PROPERTISE @@ -951,7 +951,7 @@ class PhotoDB(PDBAlbumMixin, PDBPhotoMixin, PDBTagMixin): databasename=None, data_directory=None, *, - id_length=None, + id_length=None ): if databasename is None: databasename = constants.DEFAULT_DBNAME @@ -1010,7 +1010,7 @@ class PhotoDB(PDBAlbumMixin, PDBPhotoMixin, PDBTagMixin): *, exclude_directories=None, exclude_filenames=None, - commit=True, + commit=True ): ''' Create an album, and add the directory's contents to it recursively.