Add has_tags=False suggestion to digest_directory docstring.

This commit is contained in:
voussoir 2020-09-20 11:43:18 -07:00
parent 512470f73d
commit 2a89cf33d3

View file

@ -517,6 +517,9 @@ class PDBPhotoMixin:
photos: photos:
An iterable of Photo objects to check. An iterable of Photo objects to check.
If not provided, all photos are checked. If not provided, all photos are checked.
If you only want to delete photos that have not been tagged, consider
P.purge_deleted_files(P.search(has_tags=False, is_searchhidden=None)).
''' '''
if photos is None: if photos is None:
photos = self.get_photos_by_recent() photos = self.get_photos_by_recent()