Skip to content

Commit

Permalink
fixed import
Browse files Browse the repository at this point in the history
  • Loading branch information
bstandaert committed Jun 7, 2024
1 parent a672f1f commit 89a65af
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class PbTrackSearchPathPlugin(SearchPathPlugin):
def manipulate_search_path(self, search_path: ConfigSearchPath) -> None:
# Appends the search path for tracklab plugins to the end of the search path
groups = entry_points()
pbtrack_plugins = groups['tracklab_plugin']
pbtrack_plugins = groups.get("tracklab_plugins", [])
for pbtrack_plugin in pbtrack_plugins:
m = pbtrack_plugin.dist
module = pbtrack_plugin.load()
Expand Down

0 comments on commit 89a65af

Please sign in to comment.