From 6ca7f8b7f960444321f3a3b9bc7f47653c38026b Mon Sep 17 00:00:00 2001 From: Friedrich Lindenberg Date: Mon, 30 Oct 2023 16:52:11 +0100 Subject: [PATCH] fix call structure --- followthemoney/cli/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/followthemoney/cli/__init__.py b/followthemoney/cli/__init__.py index 23ba95e27..3be93b91a 100644 --- a/followthemoney/cli/__init__.py +++ b/followthemoney/cli/__init__.py @@ -1,5 +1,5 @@ from importlib.metadata import entry_points -for ep in entry_points(group="followthemoney.cli"): +for ep in entry_points().select(group="followthemoney.cli"): ep.load()