Skip to content

Commit

Permalink
Refactor: fix variable coding style
Browse files Browse the repository at this point in the history
  • Loading branch information
knez committed Feb 28, 2022
1 parent de75b37 commit eec7b8a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions maldump/avs/avast.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ def get(e, f):
chest_id = get(e, 'ChestId')
path = get(e, 'OrigFolder') + '\\' + get(e, 'OrigFileName')
# Check if an entry is in the vault.db
inVault = e.find('IDPBlob') is not None
if inVault:
is_in_vault = e.find('IDPBlob') is not None
if is_in_vault:
malfile = self._getRawFromVault(path)
else:
malfile = self._getRawFromFile(chest_id)
Expand Down

0 comments on commit eec7b8a

Please sign in to comment.