Skip to content

Commit

Permalink
Formatting fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Cossid committed Jan 19, 2024
1 parent 4a48096 commit d203c8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bk7231tools/analysis/kvstorage.py
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ def find_storage(data: bytes) -> Optional[Tuple[int, bytes]]:
pos -= 32 # rewind to block start
except ValueError:
return None
return pos, data[pos:pos+0x8000]
return pos, data[pos : pos + 0x8000]

@staticmethod
def find_user_param_key(data: bytes) -> Optional[Tuple[int, str]]:
Expand Down

0 comments on commit d203c8d

Please sign in to comment.