mirror of
https://github.com/mandiant/capa.git
synced 2026-06-12 19:11:32 -07:00
Formatting fix
This commit is contained in:
@@ -133,11 +133,7 @@ class RelativeVirtualAddress(int, Address):
|
|||||||
"""a memory address relative to a base address"""
|
"""a memory address relative to a base address"""
|
||||||
|
|
||||||
def __new__(cls, *args, **kwargs):
|
def __new__(cls, *args, **kwargs):
|
||||||
warnings.warn(
|
warnings.warn("RelativeVirtualAddress is deprecated", DeprecationWarning, stacklevel=2)
|
||||||
"RelativeVirtualAddress is deprecated",
|
|
||||||
DeprecationWarning,
|
|
||||||
stacklevel=2
|
|
||||||
)
|
|
||||||
return super().__new__(cls, *args, **kwargs)
|
return super().__new__(cls, *args, **kwargs)
|
||||||
|
|
||||||
def __repr__(self):
|
def __repr__(self):
|
||||||
|
|||||||
Reference in New Issue
Block a user