We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b17bda commit c297243Copy full SHA for c297243
1 file changed
frida/core.py
@@ -1524,6 +1524,7 @@ class CompilerDiagnostic(TypedDict):
1524
CompilerCompression = Literal["none", "terser"]
1525
CompilerPlatform = Literal["neutral", "gum", "browser"]
1526
1527
+
1528
class Compiler:
1529
def __init__(self) -> None:
1530
self._impl = _frida.Compiler()
@@ -1544,7 +1545,7 @@ def build(
1544
1545
platform: Optional[CompilerPlatform] = None,
1546
externals: Optional[Sequence[str]] = None,
1547
) -> str:
- kwargs = {
1548
+ kwargs: dict[str, Any] = {
1549
"project_root": project_root,
1550
"output_format": output_format,
1551
"bundle_format": bundle_format,
0 commit comments