Skip to content

Commit f347645

Browse files
committed
chore: do not use all for variable name
1 parent ad7ea56 commit f347645

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

omv/engines/utils/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ def resolve_paths(path_s):
1010
import glob
1111

1212
if PATH_DELIMITER in path_s:
13-
all = []
13+
all_paths = []
1414
for p in path_s.split(PATH_DELIMITER):
1515
for g in glob.glob(p):
16-
all.append(g)
17-
path_s = all
16+
all_paths.append(g)
17+
path_s = all_paths
1818
else:
1919
path_s = glob.glob(path_s)
2020

0 commit comments

Comments
 (0)