From 3ceee85a75996b929b67d29329d93589664f7453 Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Sat, 13 Sep 2025 10:39:59 -0400 Subject: [PATCH] Fix for new mypy release --- src/OpenSSL/_util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/OpenSSL/_util.py b/src/OpenSSL/_util.py index e5ea0205..41a64526 100644 --- a/src/OpenSSL/_util.py +++ b/src/OpenSSL/_util.py @@ -14,7 +14,7 @@ binding = Binding() ffi = binding.ffi -lib = binding.lib +lib: Any = binding.lib # This is a special CFFI allocator that does not bother to zero its memory