Skip to content

Commit

Permalink
Fix pylint - unnecessary-comprehension: Unnecessary use of a comprehe…
Browse files Browse the repository at this point in the history
  • Loading branch information
odyssey4me committed Jul 16, 2020
1 parent 70a0aa0 commit 700be46
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@


def flatten(args):
return [e for e in chain(*args)]
return list(chain(*args))


def lists_equal(l1, l2):
Expand Down

0 comments on commit 700be46

Please sign in to comment.