From 9cc84ca0f94990f0f5befd61ebbb6dd069183482 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Garc=C3=ADa=20Garz=C3=B3n?= Date: Wed, 4 Dec 2024 12:25:07 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20explicit=20select=20for=203.9=20?= =?UTF-8?q?compatibility?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- customblocks/customblocks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/customblocks/customblocks.py b/customblocks/customblocks.py index 7893693..53c161c 100644 --- a/customblocks/customblocks.py +++ b/customblocks/customblocks.py @@ -17,7 +17,7 @@ def _installedGenerators(): if not hasattr(_installedGenerators, 'value'): _installedGenerators.value = dict( (entry_point.name, entry_point.load()) - for entry_point in entry_points( + for entry_point in entry_points().select( group='markdown.customblocks.generators' ) )