bugfix: Use unused 'paths' list

This commit is contained in:
2-REC 2022-11-29 13:04:29 +07:00
parent f0ece4b778
commit 9aeb789852

View file

@ -178,7 +178,7 @@ class DropDataFrame(QtWidgets.QFrame):
paths = self._get_all_paths(in_paths)
collectionable_paths = []
non_collectionable_paths = []
for path in in_paths:
for path in paths:
ext = os.path.splitext(path)[1]
if ext in self.image_extensions or ext in self.sequence_types:
collectionable_paths.append(path)