We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9fdee22 commit 9f463fbCopy full SHA for 9f463fb
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,
@@ -1570,7 +1571,7 @@ def watch(
1570
1571
1572
1573
) -> None:
1574
1575
1576
1577
0 commit comments