We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d63f386 commit 7ffe165Copy full SHA for 7ffe165
content_editor/contents.py
@@ -78,6 +78,6 @@ def contents_for_item(item, plugins, *, inherit_from=None, regions=None):
78
[item] + inherit_from, plugins=plugins, regions=regions
79
)
80
contents = all_contents[item]
81
- for item in inherit_from:
82
- contents.inherit_regions(all_contents[item])
+ for other in inherit_from:
+ contents.inherit_regions(all_contents[other])
83
return contents
0 commit comments