mirror of
https://github.com/arsenetar/send2trash.git
synced 2026-01-22 06:37:18 +00:00
Replace elif with else (#104)
This commit is contained in:
@@ -12,7 +12,7 @@ import collections.abc
|
|||||||
def preprocess_paths(paths):
|
def preprocess_paths(paths):
|
||||||
if isinstance(paths, collections.abc.Iterable) and not isinstance(paths, (str, bytes)):
|
if isinstance(paths, collections.abc.Iterable) and not isinstance(paths, (str, bytes)):
|
||||||
paths = list(paths)
|
paths = list(paths)
|
||||||
elif not isinstance(paths, list):
|
else:
|
||||||
paths = [paths]
|
paths = [paths]
|
||||||
# Convert items such as pathlib paths to strings
|
# Convert items such as pathlib paths to strings
|
||||||
return [os.fspath(path) for path in paths]
|
return [os.fspath(path) for path in paths]
|
||||||
|
|||||||
Reference in New Issue
Block a user