Skip to content

Commit

Permalink
Apply linting and formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
viglia committed Nov 17, 2023
1 parent b1e0747 commit 7c25ca5
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion py/symbolic/proguard.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,12 @@ def remap_method(self, klass: str, method: str) -> Tuple[str, str] | None:
return output if len(output[0]) > 0 and len(output[1]) > 0 else None

def remap_frame(
self, klass: str, method: str, line: int, parameters: str = "", use_parameters: bool = False
self,
klass: str,
method: str,
line: int,
parameters: str = "",
use_parameters: bool = False,
) -> list[JavaStackFrame]:
"""Remaps the stackframe, given its class, method and line."""
result = self._methodcall(
Expand Down

0 comments on commit 7c25ca5

Please sign in to comment.