Replace list(map(fun, seq))
with [fun(elem) for elem in seq]
across the codebase
#1204
Labels
list(map(fun, seq))
with [fun(elem) for elem in seq]
across the codebase
#1204
The latter is just more readable.
The text was updated successfully, but these errors were encountered: