Skip to content

Commit

Permalink
Fix AttributeError: 'VendorImporter' object has no attribute '_path' …
Browse files Browse the repository at this point in the history
…in Python 3.12 for autogen_serialized_datamodel.py

Signed-off-by: Evan Blaudy <[email protected]>
  • Loading branch information
EvanBldy committed Oct 28, 2023
1 parent a2c280c commit a8222eb
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,7 @@ def _generate_model_for_module(mod, classes, modules):
if (
inspect.ismodule(thing)
and thing not in modules
and "opentimelineio" in thing.__name__
and all(not thing.__name__.startswith(t) for t in SKIP_MODULES)
)
),
Expand Down

0 comments on commit a8222eb

Please sign in to comment.