Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
michalkrzem committed Dec 1, 2024
1 parent ebc9277 commit a536f95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ def read_bytes_from_offset(
"""

before = data[offset - byte_range : offset]
matching = data[offset: offset + matched_length]
matching = data[offset : offset + matched_length]
after = data[
offset + matched_length : offset + matched_length + byte_range
]
Expand Down

0 comments on commit a536f95

Please sign in to comment.