From 942b6c3cefa1fe31c614f68521de4d97c253e2da Mon Sep 17 00:00:00 2001 From: furtest Date: Wed, 28 Jan 2026 18:21:13 +0100 Subject: [PATCH] main : import PathsManager instead of * --- src/unisync/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/unisync/main.py b/src/unisync/main.py index b448cda..7096498 100644 --- a/src/unisync/main.py +++ b/src/unisync/main.py @@ -7,7 +7,7 @@ from unisync.argparser import create_argparser from unisync.runners import unisync_sync, unisync_add, unisync_mount from unisync.config import load_config from unisync.synchroniser import Synchroniser -from unisync.paths import * +from unisync.paths import PathsManager def main(): parser = create_argparser(unisync_sync, unisync_add, unisync_mount)