Skip to content

Commit b659a4a

Browse files
committed
fix abstract_objects reference
1 parent 25df4ae commit b659a4a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/springpython/config/_yaml_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ def read_object_defs(self):
6666
# A dictionary of abstract objects, keyed by their IDs, used in
6767
# traversing the hierarchies of parents; built upfront here for
6868
# convenience.
69-
abstract_objects = {}
69+
self.abstract_objects = {}
7070
for object in doc["objects"]:
7171
if "abstract" in object:
7272
self.abstract_objects[object["object"]] = object

0 commit comments

Comments
 (0)