From c134af23044f60dee3091dae2bd29598bc4bd3fc Mon Sep 17 00:00:00 2001 From: Ange Albertini Date: Thu, 28 May 2026 13:34:48 +0000 Subject: [PATCH] Formatting fix --- capa/features/address.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) 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):