From 2dafcc8c6b9c756d3c3a0a265e9d8dfcb681c830 Mon Sep 17 00:00:00 2001 From: furtest Date: Wed, 28 Jan 2026 18:22:37 +0100 Subject: [PATCH] paths : linter reports cleanup use [] instead of list() --- src/unisync/paths.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/unisync/paths.py b/src/unisync/paths.py index a13bc50..127560e 100644 --- a/src/unisync/paths.py +++ b/src/unisync/paths.py @@ -92,7 +92,7 @@ class PathsManager: Writes a list of new paths to the file """ current_paths = self.get_paths_to_sync() - paths_to_add = list() + paths_to_add = [] # Check if one of the parent is already being synchronised # If so there is no need to add the child path for new_path in paths: