From ea8cbb1fa4a7af8d37cb9163e65f8a2ad0a1a165 Mon Sep 17 00:00:00 2001 From: hutcheb Date: Tue, 5 Aug 2025 21:27:02 +0700 Subject: [PATCH] fix: Add NoneType as a local member to the _common module --- aenum/_common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aenum/_common.py b/aenum/_common.py index 7eaee11..d978ee9 100644 --- a/aenum/_common.py +++ b/aenum/_common.py @@ -76,7 +76,7 @@ baseint = baseinteger try: - NoneType + NoneType = NoneType except NameError: NoneType = type(None)