Skip to content

Commit

Permalink
Fix a typo when build_jupytext_contents_manager_class (#1253)
Browse files Browse the repository at this point in the history
can't be imported
  • Loading branch information
mwouts authored Jun 30, 2024
1 parent a9131de commit 4e95b2c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ Jupytext ChangeLog
1.16.3-dev (2024-07-??)
-------------------

**Fixed**
- We have fixed a typo when `build_jupytext_contents_manager_class` can't be imported ([#1162](https://github.com/mwouts/jupytext/issues/1162))

**Added**
- Added support for Lua notebooks ([#1252](https://github.com/mwouts/jupytext/pull/1252)) - thanks to [erentar](https://github.com/erentar) for this contribution

Expand Down
2 changes: 1 addition & 1 deletion src/jupytext/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
try:
from .contentsmanager import build_jupytext_contents_manager_class
except ImportError as err:
build_jupytext_contents_manager = reraise(err)
build_jupytext_contents_manager_class = reraise(err)

try:
from .contentsmanager import TextFileContentsManager
Expand Down

0 comments on commit 4e95b2c

Please sign in to comment.