hyriver / pygeoogc

Unnecessary use of comprehension PYL-R1721
Performance
Major
a year agoa year old
Unnecessary use of a comprehension, use list(version_limit) instead.
 60    deps = [f".[{extra}]"] if extra else ["."]
 61    deps += [f"git+https://github.com/hyriver/{p}.git" for p in gh_deps[package]]
 62    if version_limit:
 63        deps += [p for p in version_limit] 64    session.install(*deps)
 65    dirs = [".pytest_cache", "build", "dist", ".eggs"]
 66    for d in dirs: