mirror of
https://github.com/zebrajr/ladybird.git
synced 2025-12-06 00:19:53 +01:00
Meta: Do not use mutable default arguments in ladybird.py
Caught by ruff.
This commit is contained in:
parent
8bfbb944d1
commit
c53ee261dd
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user