We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ce80924 commit f5fc1c2Copy full SHA for f5fc1c2
sources/directory.py
@@ -9,7 +9,7 @@ def get_photos():
9
album names correspond to folders. Sub-folders are converted to regular albums, as Lychee does not support
10
sub-albums. Files in the root directory are put into the Unsorted album ("{unsorted}" is the key name).
11
12
- :return: dictionary with
+ :return: dictionary with album names and image paths.
13
"""
14
15
albums = {}
@@ -38,6 +38,7 @@ def get_photos():
38
def _get_album_name(rel_path):
39
40
Convert folder a file resides in into an album name
41
+ :param
42
43
return rel_path.split(os.sep)[-1]
44
0 commit comments