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
Fixed ImportError when used with other plugins (e.g. EDMC-Canonn): When the plugin folder was named "EDMC_GalaxyGPS" and another plugin (such as Canonn) was installed, GalaxyGPS could raise ImportError: cannot import name 'plugin_tl' from 'load' because Python resolved the global name load to the other plugin’s load.py. The plugin now follows EDMC PLUGINS.md best practices: the entry-point load.py sets the translation function on the GalaxyGPS package before any submodule runs, and package code uses from GalaxyGPS import _plugin_tl instead of from load import plugin_tl, so the shared name load is never used from inside the package. Works correctly with both folder names (GalaxyGPS and EDMC_GalaxyGPS) and with any other plugins installed.