From 3a4f2faf2e458b6670090c86a8645f5af0acf181 Mon Sep 17 00:00:00 2001 From: Timothy Flynn Date: Tue, 10 Jun 2025 13:43:51 -0400 Subject: [PATCH] Meta: Use `Optional[str]` instead of `str | None` for python 3.9 compat --- Meta/ladybird.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Meta/ladybird.py b/Meta/ladybird.py index 509d621b92a..3e086de90fd 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: Optional[list[str]] = None): +def build_main(build_dir: Path, jobs: Optional[str], target: Optional[str] = None, args: Optional[list[str]] = None): build_args = ["ninja", "-C", str(build_dir)] if not jobs: