Skip to content

Commit

Permalink
fix stupid import error
Browse files Browse the repository at this point in the history
  • Loading branch information
jhidding committed Nov 18, 2023
1 parent 3f7e369 commit 6fcd4d3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions entangled/hooks/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import logging
from importlib_metadata import entry_points
from importlib.metadata import entry_points

from .base import HookBase, PrerequisitesFailed
from . import build, task, quarto_attributes
Expand All @@ -12,7 +12,7 @@

external_hooks = {
name: discovered_hooks[name].load().Hook
for name in discovered_hooks
for name in discovered_hooks.names
}

hooks: dict[str, type[HookBase]] = {
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "entangled-cli"
version = "2.0.1"
version = "2.0.2"
description = "Literate Programming toolbox"
repository = "https://github.com/entangled/entangled.py"
homepage = "https://entangled.github.io/"
Expand Down

0 comments on commit 6fcd4d3

Please sign in to comment.