Skip to content

Commit

Permalink
Fix error in __version__
Browse files Browse the repository at this point in the history
There is a copy/paste error in the code that creates __version__ to the wrong package.
  • Loading branch information
pelme committed Mar 12, 2024
1 parent cee5da7 commit c33d98c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/markupsafe/__init__.py
Expand Up @@ -339,6 +339,6 @@ def __getattr__(name: str) -> t.Any:
' `importlib.metadata.version("markupsafe")`, instead.',
stacklevel=2,
)
return importlib.metadata.version("flask-classful")
return importlib.metadata.version("markupsafe")

raise AttributeError(name)

0 comments on commit c33d98c

Please sign in to comment.