From 42c69867b8fbe283dbe9614c86de5fcb125cb335 Mon Sep 17 00:00:00 2001 From: Jan Petykiewicz Date: Wed, 31 Jul 2024 22:54:27 -0700 Subject: [PATCH] using == on purpose here --- mem_edit/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mem_edit/utils.py b/mem_edit/utils.py index a1f0bc3..5099845 100644 --- a/mem_edit/utils.py +++ b/mem_edit/utils.py @@ -86,7 +86,7 @@ def ctypes_equal( """ Check if the values stored inside two ctypes buffers are equal. """ - if not type(a) == type(b): + if not type(a) == type(b): # noqa: E721 return False if isinstance(a, ctypes.Array):