Recently, the add-on's code was split into tow files, __init__.py and DirectLink.py. The goal was to load only the __init__.py file. But the two files are actually loaded. This is due to the fact that you have split in two files, but you have kept them at the same level, i.e. directly in the globalPlugins folder.
Solution
To have only the __init__.py file loaded, you need to create a package, i.e. a subfolder containing these two files. It is what is done in the PR.
Issue
Recently, the add-on's code was split into tow files,
__init__.py
andDirectLink.py
. The goal was to load only the__init__.py
file. But the two files are actually loaded. This is due to the fact that you have split in two files, but you have kept them at the same level, i.e. directly in the globalPlugins folder.Solution
To have only the
__init__.py
file loaded, you need to create a package, i.e. a subfolder containing these two files. It is what is done in the PR.