From c53ee261dd64b1c11bcdd3a69f8252d1689a11f0 Mon Sep 17 00:00:00 2001 From: Timothy Flynn Date: Mon, 9 Jun 2025 10:39:58 -0400 Subject: [PATCH] Meta: Do not use mutable default arguments in ladybird.py Caught by ruff. --- Meta/ladybird.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Meta/ladybird.py b/Meta/ladybird.py index dbab1e7ed1..99349f27bf 100755 --- a/Meta/ladybird.py +++ b/Meta/ladybird.py @@ -303,7 +303,7 @@ def ensure_ladybird_source_dir() -> Path: return ladybird_source_dir -def build_main(build_dir: Path, jobs: str | None, target: Optional[str] = None, args: list[str] = []): +def build_main(build_dir: Path, jobs: str | None, target: Optional[str] = None, args: Optional[list[str]] = None): build_args = ["ninja", "-C", str(build_dir)] if not jobs: