Skip to content

Commit

Permalink
Merge pull request #1268 from gcmoreira/fix_constants_imports
Browse files Browse the repository at this point in the history
Fix changes introduced to volatility3.framework.constants in PRs #838
  • Loading branch information
ikelos authored Sep 18, 2024
2 parents 10ac21d + f77003b commit bb6ab45
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion volatility3/framework/constants/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,4 +134,5 @@ def __getattr__(name):
]:
warnings.warn(f"{name} is deprecated", FutureWarning)
return globals()[f"{deprecated_tag}{name}"]
return None

return getattr(__import__(__name__), name)

0 comments on commit bb6ab45

Please sign in to comment.