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
paths is there to allow discovery of plugins that are not in sys.path (by temporarily adding the specified paths to sys.path, just for the duration of discovery) ...
while it works for discovery, it's rather error prone later because of all of our usage of delayed imports and python_name. Unless the manifest somehow remembers that it came from somewhere outside of sys.path, it will break at import time, and I think it's a YAGNI feature anyway
The text was updated successfully, but these errors were encountered:
paths
is there to allow discovery of plugins that are not insys.path
(by temporarily adding the specified paths tosys.path
, just for the duration of discovery) ...while it works for discovery, it's rather error prone later because of all of our usage of delayed imports and
python_name
. Unless the manifest somehow remembers that it came from somewhere outside ofsys.path
, it will break at import time, and I think it's a YAGNI feature anywayThe text was updated successfully, but these errors were encountered: