From 1c4d30c052a646e670be98eb418610e9c55439fa Mon Sep 17 00:00:00 2001 From: Swann Perarnau Date: Wed, 22 Oct 2025 12:36:44 -0500 Subject: [PATCH] [fix] fix typo in base types in python --- bindings/python/nrm/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/python/nrm/base.py b/bindings/python/nrm/base.py index 2ce25bf..77c722f 100644 --- a/bindings/python/nrm/base.py +++ b/bindings/python/nrm/base.py @@ -30,7 +30,7 @@ # ctypes.c_time_t is in python 3.12 if hasattr(ct, "c_time_t"): - _time_t = ct.c_c_time_t + _time_t = ct.c_time_t else: # check for 64b system if ct.sizeof(ct.c_void_p) == ct.sizeof(ct.c_int64):