From 0219a9b4dab4fa714811f7776e74ac8262d40adc Mon Sep 17 00:00:00 2001 From: Rhet Turnbull Date: Sat, 7 Dec 2019 09:08:28 -0800 Subject: [PATCH] Updated doc strings --- osxphotos/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/osxphotos/__init__.py b/osxphotos/__init__.py index f566b302..7d156256 100644 --- a/osxphotos/__init__.py +++ b/osxphotos/__init__.py @@ -240,12 +240,12 @@ class PhotosDB: return list(keywords) def persons(self): - """ return persons as dict of person, count in reverse sorted order (descending) """ + """ return list of persons found in photos database """ persons = self._dbfaces_person.keys() return list(persons) def albums(self): - """ return albums as dict of albums, count in reverse sorted order (descending) """ + """ return list of albums found in photos database """ albums = self._dbalbums_album.keys() return list(albums)