From bcb26507fe7f4f0ec555db656c22478494ab5f60 Mon Sep 17 00:00:00 2001 From: glubsy Date: Thu, 25 Jun 2020 01:23:03 +0200 Subject: [PATCH] Remove superfluous argument --- core/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/app.py b/core/app.py index 94055b26..0a9301a2 100644 --- a/core/app.py +++ b/core/app.py @@ -259,7 +259,7 @@ class DupeGuru(Broadcaster): def _create_file(self, path): # We add fs.Folder to fileclasses in case the file we're loading contains folder paths. - return fs.get_file(path, self.fileclasses + [se.fs.Folder] + [fs.Folder]) + return fs.get_file(path, self.fileclasses + [se.fs.Folder]) def _get_file(self, str_path): path = Path(str_path)