Skip to content

Commit c297243

Browse files
committed
fix CI
1 parent 9b17bda commit c297243

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

frida/core.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1524,6 +1524,7 @@ class CompilerDiagnostic(TypedDict):
15241524
CompilerCompression = Literal["none", "terser"]
15251525
CompilerPlatform = Literal["neutral", "gum", "browser"]
15261526

1527+
15271528
class Compiler:
15281529
def __init__(self) -> None:
15291530
self._impl = _frida.Compiler()
@@ -1544,7 +1545,7 @@ def build(
15441545
platform: Optional[CompilerPlatform] = None,
15451546
externals: Optional[Sequence[str]] = None,
15461547
) -> str:
1547-
kwargs = {
1548+
kwargs: dict[str, Any] = {
15481549
"project_root": project_root,
15491550
"output_format": output_format,
15501551
"bundle_format": bundle_format,

0 commit comments

Comments
 (0)