Skip to content

Commit

Permalink
Fix indentation (code style)
Browse files Browse the repository at this point in the history
  • Loading branch information
fariss committed Feb 24, 2024
1 parent 449dc3e commit 79cb10e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion capa/features/extractors/ida/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def find_byte_sequence(start: int, end: int, seq: bytes) -> Iterator[int]:
err = ida_bytes.parse_binpat_str(patterns, 0, seqstr, 16, encoding)

if not err:
while True:
while True:
ea = ida_bytes.bin_search(start, end, patterns, ida_bytes.BIN_SEARCH_FORWARD)
if ea == idaapi.BADADDR:
break
Expand Down

0 comments on commit 79cb10e

Please sign in to comment.