Skip to content

Commit 83b5464

Browse files
committed
fix: return path_strings in session
1 parent 275cd1b commit 83b5464

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tagstudio/src/core/library/alchemy/library.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -620,8 +620,8 @@ def get_paths(self, glob: str | None = None) -> list[str]:
620620
with Session(self.engine) as session:
621621
paths = session.scalars(select(Entry.path)).unique()
622622

623-
path_strings: list[str] = list(map(lambda x: x.as_posix(), paths))
624-
return path_strings
623+
path_strings: list[str] = list(map(lambda x: x.as_posix(), paths))
624+
return path_strings
625625

626626
def search_library(
627627
self,

0 commit comments

Comments
 (0)