Skip to content

Commit

Permalink
Update src/edutap/wallet_google/plugins.py
Browse files Browse the repository at this point in the history
  • Loading branch information
jensens committed Jan 29, 2025
1 parent a69b4dc commit 4e83206
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/edutap/wallet_google/plugins.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

def get_image_providers() -> list[ImageProvider]:
eps = entry_points(group="edutap.wallet_google.plugins")
plugins = [ep.load() for ep in eps if "ImageProvider" in ep.name]
plugins = [ep.load() for ep in eps if ep.name.startswith("ImageProvider")]
if not plugins:
raise NotImplementedError("No image provider plug-in found")
for plugin in plugins:
Expand Down

0 comments on commit 4e83206

Please sign in to comment.