diff --git a/capa/features/address.py b/capa/features/address.py index 1aacf226..1a0ef966 100644 --- a/capa/features/address.py +++ b/capa/features/address.py @@ -133,11 +133,7 @@ class RelativeVirtualAddress(int, Address): """a memory address relative to a base address""" def __new__(cls, *args, **kwargs): - warnings.warn( - "RelativeVirtualAddress is deprecated", - DeprecationWarning, - stacklevel=2 - ) + warnings.warn("RelativeVirtualAddress is deprecated", DeprecationWarning, stacklevel=2) return super().__new__(cls, *args, **kwargs) def __repr__(self):