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
by simply checking if a plugin with name is already in __all__.
The warning should probably include package name of both plugins in order to make it easy for the user to understand where they come from (one way of getting package name from the plugin reference is to use inspect from std.lib).
The text was updated successfully, but these errors were encountered:
Since we are a plugin framework, there might be plugin projects creating plugins with the same name.
Raise a warning during runtime to give attention to name conflict. This could be done in
webviz-config/webviz_config/plugins/__init__.py
Lines 37 to 39 in 623ab6f
by simply checking if a plugin with name is already in
__all__
.The warning should probably include package name of both plugins in order to make it easy for the user to understand where they come from (one way of getting package name from the plugin reference is to use
inspect
from std.lib).The text was updated successfully, but these errors were encountered: