Skip to content

Commit

Permalink
import fix and test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Red Giuliano committed Jan 14, 2025
1 parent 44a63c6 commit b5f7021
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions zt_backend/tests/test_convert.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@

notebook_state = NotebookState()

IPYNB_PATH = Path(__file__).resolve().parent / "test_file.ipynb"
OUTPUT_PATH = Path(__file__).resolve().parent / "notebook.ztnb"
NOTEBOOK_PATH = Path(__file__).resolve().parent / "test_notebook.ztnb"
IPYNB_PATH = Path("zt_backend/tests/test_file.ipynb").resolve()
OUTPUT_PATH = Path("zt_backend/tests/notebook.ztnb").resolve()
NOTEBOOK_PATH = Path("zt_backend/tests/test_notebook.ztnb").resolve()

def test_ipynb_to_ztnb():

Expand Down
2 changes: 1 addition & 1 deletion zt_cli/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from pathlib import Path
import shutil
import requests
from importlib import version
from importlib.metadata import version
from importlib.resources import files
import sys
import yaml
Expand Down

0 comments on commit b5f7021

Please sign in to comment.