Skip to content

Commit

Permalink
tracer: Add some more type hints
Browse files Browse the repository at this point in the history
  • Loading branch information
oleavr committed Oct 15, 2024
1 parent 886b2d0 commit f30886f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions frida_tools/tracer.py
Original file line number Diff line number Diff line change
Expand Up @@ -1208,22 +1208,22 @@ class UI:
def on_script_created(self, script: frida.core.Script) -> None:
pass

def on_trace_progress(self, status) -> None:
def on_trace_progress(self, status: str) -> None:
pass

def on_trace_warning(self, message):
def on_trace_warning(self, message: str):
pass

def on_trace_error(self, message) -> None:
def on_trace_error(self, message: str) -> None:
pass

def on_trace_events(self, events) -> None:
pass

def on_trace_handler_create(self, target, handler, source) -> None:
def on_trace_handler_create(self, target: TraceTarget, handler: str, source: Path) -> None:
pass

def on_trace_handler_load(self, target, handler, source) -> None:
def on_trace_handler_load(self, target: TraceTarget, handler: str, source: Path) -> None:
pass


Expand Down

0 comments on commit f30886f

Please sign in to comment.