From c9ca29464b247fc1155adc6c3b33c9a303d6bf43 Mon Sep 17 00:00:00 2001 From: Salvoxia Date: Wed, 25 Sep 2024 21:09:41 +0200 Subject: [PATCH] Fixed SyntaxWarning due to DocuString --- immich_auto_album.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/immich_auto_album.py b/immich_auto_album.py index a266681..f662857 100644 --- a/immich_auto_album.py +++ b/immich_auto_album.py @@ -177,7 +177,7 @@ def expand_to_glob(expr: str) -> str: Returns --------- The original expression if it contained a slash or an asterisk, - otherwise \*\*/\*\\*\/\*\* + otherwise \\*\\*/\\*\\\\*/\\*\\* """ if not '/' in expr and not '*' in expr: glob_expr = f'**/*{expr}*/**'