From f0069147cbd22a9b92051a0acce68f1ec5cfc978 Mon Sep 17 00:00:00 2001 From: tybruno Date: Fri, 31 May 2024 09:40:09 -0600 Subject: [PATCH 1/2] Adding `__slots__` to `ModifiableItemsAttrDict`. --- .../modifiable_items_attribute_dictionary.py | 1 + 1 file changed, 1 insertion(+) diff --git a/modifiable_items_dictionary/modifiable_items_attribute_dictionary.py b/modifiable_items_dictionary/modifiable_items_attribute_dictionary.py index 017f1af..6d77f0a 100644 --- a/modifiable_items_dictionary/modifiable_items_attribute_dictionary.py +++ b/modifiable_items_dictionary/modifiable_items_attribute_dictionary.py @@ -28,6 +28,7 @@ class ModifiableItemsAttrDict(ModifiableItemsDict): items. This means that in addition to the standard dictionary access syntax (dict["key"]), you can also use attribute syntax (dict.key). """ + __slots__ = () def __getattr__(self, name: str) -> Any: """ From 263b181c66ce4b4afd96bd1fc93a5711527ab491 Mon Sep 17 00:00:00 2001 From: tybruno Date: Fri, 31 May 2024 09:49:45 -0600 Subject: [PATCH 2/2] updating version to `v3.0.1` --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 50c5b03..9ac88e9 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ """Setup.py""" import setuptools -__version__ = 'v3.0.0' +__version__ = 'v3.0.1' __author__ = 'Tyler Bruno' _description = ( 'Typed and Tested Modifiable Items Dict and ModifiableItemsAttrDict which '