Skip to content

Commit a029794

Browse files
committed
lint
1 parent c6de3a1 commit a029794

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

datapackage_pipelines/web/server.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@ def yamlize(x):
4040

4141
def make_hierarchies(statuses):
4242

43-
def group(l):
44-
pipelines = list(filter(lambda x: len(x['id']) == 1, l))
45-
children_ = list(filter(lambda x: len(x['id']) > 1, l))
43+
def group(lvl):
44+
pipelines = list(filter(lambda x: len(x['id']) == 1, lvl))
45+
children_ = list(filter(lambda x: len(x['id']) > 1, lvl))
4646
groups_ = {}
4747
for child in children_:
4848
child_key = child['id'].pop(0)

0 commit comments

Comments
 (0)