We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If you un-register and re-register this add-on, there is an error: pcb2blender_importer/__init__.py
pcb2blender_importer/__init__.py
ValueError: register_class(...): already registered as a subclass 'PCB2BLENDER_OT_import_pcb3d'
This is caused by the register function always adding to _modules.
_modules
To fix this, at the start of register(..) in pcb2blender_importer/__init__.py run: _modules.clear() .
register(..)
_modules.clear()
The text was updated successfully, but these errors were encountered:
Fix error when re-registering importer (#77)
ee61400
Fixed! Thanks for catching that and providing the fix ^^
Sorry, something went wrong.
30350n
No branches or pull requests
If you un-register and re-register this add-on, there is an error:
pcb2blender_importer/__init__.py
ValueError: register_class(...): already registered as a subclass 'PCB2BLENDER_OT_import_pcb3d'
This is caused by the register function always adding to
_modules
.To fix this, at the start of
register(..)
inpcb2blender_importer/__init__.py
run:_modules.clear()
.The text was updated successfully, but these errors were encountered: