Skip to content

Commit 108b206

Browse files
committed
Fix dash_hooks plugin entry point
1 parent 4341a9c commit 108b206

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dash/_hooks.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ def register_setuptools(cls):
251251

252252
for dist in _importlib_metadata.distributions():
253253
for entry in dist.entry_points:
254-
# Look for setup.py entry points named `dash-hooks`
255-
if entry.group != "dash-hooks":
254+
# Look for setup.py entry points named `dash_hooks`
255+
if entry.group != "dash_hooks":
256256
continue
257257
entry.load()

0 commit comments

Comments
 (0)