You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In ezdxf/explode.py, line 247, the function virtual_block_reference_entities is called in an incorrect way that throws an exception if ever ezdxf goes there.
But the call is something like virtual_block_reference_entities(entity, skipped_entity_callback) that essentially throws an exception. For me the following call instead fixed the problem, and I think it should be the same at the point that I refer to:
In ezdxf/explode.py, line 247, the function
virtual_block_reference_entities
is called in an incorrect way that throws an exception if ever ezdxf goes there.More specifically, the function definition is:
But the call is something like
virtual_block_reference_entities(entity, skipped_entity_callback)
that essentially throws an exception. For me the following call instead fixed the problem, and I think it should be the same at the point that I refer to:virtual_block_reference_entities(entity, skipped_entity_callback=skipped_entity_callback)
Thanks in advance for taking this issue into account! :)
P.S.: sorry, cannot share with you the DXF to reproduce because it is private, thanks for your understanding!
The text was updated successfully, but these errors were encountered: