Updated doc strings
This commit is contained in:
@@ -240,12 +240,12 @@ class PhotosDB:
|
|||||||
return list(keywords)
|
return list(keywords)
|
||||||
|
|
||||||
def persons(self):
|
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()
|
persons = self._dbfaces_person.keys()
|
||||||
return list(persons)
|
return list(persons)
|
||||||
|
|
||||||
def albums(self):
|
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()
|
albums = self._dbalbums_album.keys()
|
||||||
return list(albums)
|
return list(albums)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user