Remove superfluous argument

This commit is contained in:
glubsy 2020-06-25 01:23:03 +02:00
parent ed64428c80
commit bcb26507fe
1 changed files with 1 additions and 1 deletions

View File

@ -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)