ruff rule C4

This commit is contained in:
thomas girod
2024-06-27 15:00:37 +02:00
parent 171a1cb876
commit f941435232
7 changed files with 9 additions and 9 deletions

View File

@ -24,11 +24,11 @@ class Command(BaseCommand):
def handle(self, *args, **options):
deps = settings.SITH_FRONT_DEP_VERSIONS
processes = dict(
(url, create_process(url))
processes = {
url: create_process(url)
for url in deps.keys()
if parse_semver(deps[url]) is not None
)
}
for url, process in processes.items():
try: