Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
nutti committed Sep 29, 2024
1 parent 557324e commit ece82f0
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion src/fake_bpy_module/transformer/bpy_module_tweaker.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ def _rebase_bpy_types_class_base_class(
dtype_str = dtype_node.astext()
if m := re.match(
r"^`([a-zA-Z0-9]+)` `bpy_prop_collection` of `"
r"([a-zA-Z0-9]+)`(, \(readonly\)).$", dtype_str):
r"([a-zA-Z0-9]+)`(, \(readonly\))*$", dtype_str):
parent_to_child[m.group(1)] = m.group(2)

for parent, child in parent_to_child.items():
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,5 +89,4 @@
of
<class-ref>
Attribute2
, (readonly)
<function-list>

0 comments on commit ece82f0

Please sign in to comment.