Skip to content

Commit

Permalink
black
Browse files Browse the repository at this point in the history
  • Loading branch information
rihi committed Sep 4, 2024
1 parent 9fe35ce commit 3199561
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions decompiler/frontend/binaryninja/tagging.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def run(self):
"""
if not self._enabled:
return
try:
try:
instructions: list[Instruction] = []
for tokens, address in self._function.instructions:
operands: list[str] = []
Expand All @@ -39,7 +39,7 @@ def run(self):
operand += token.text
if operand:
operands.append(operand)

instructions.append(Instruction(address, tokens[0].text, tuple(operands)))

matches = Matcher()._match_single_function(instructions)
Expand Down

0 comments on commit 3199561

Please sign in to comment.