Skip to content

Commit

Permalink
pep8
Browse files Browse the repository at this point in the history
  • Loading branch information
huettenhain committed Nov 1, 2023
1 parent ad4daeb commit ebeddf8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions refinery/units/sinks/asm.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
class asm(opc):
"""
Disassembles the input data using capstone and produces a human-readable disassembly listing.
It internally uses the `refinery.opc` unit for this, which is an alternative option if you
are looking for more programmatic disassembly.
It internally uses the `refinery.opc` unit for this, which is an alternative option if you are
looking for more programmatic disassembly.
"""
def __init__(
self, mode='x32', *,
Expand All @@ -25,7 +25,7 @@ def __init__(
no_hexdump=no_hexdump,
)

def process(self, data):
def process(self, data):
insns = list(super().process(data))
if not insns:
return
Expand Down

0 comments on commit ebeddf8

Please sign in to comment.