From 8967cb4075800d73bb2384c62567d1742226bcd1 Mon Sep 17 00:00:00 2001 From: Remi THEBAULT Date: Sat, 7 Oct 2023 14:41:59 +0200 Subject: [PATCH] fix flake --- mesonbuild/dependencies/dub.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mesonbuild/dependencies/dub.py b/mesonbuild/dependencies/dub.py index fa30fb5fa098..4a3e2ac95bda 100644 --- a/mesonbuild/dependencies/dub.py +++ b/mesonbuild/dependencies/dub.py @@ -138,9 +138,9 @@ def __init__(self, name: str, environment: 'Environment', kwargs: T.Dict[str, T. # A command that might be useful in case of missing DUB package def dub_build_deep_command() -> str: if self._dub_has_build_deep: - cmd = [ 'dub', 'build', '--deep' ] + cmd = ['dub', 'build', '--deep'] else: - cmd = [ 'dub', 'run', '--yes', 'dub-build-deep', '--' ] + cmd = ['dub', 'run', '--yes', 'dub-build-deep', '--'] return join_args(cmd + [ main_pack_spec,