From e83abc9c50944ad93f28c21366737e4c0b10c879 Mon Sep 17 00:00:00 2001 From: Ayaz Salikhov Date: Tue, 18 Jan 2022 19:57:17 +0300 Subject: [PATCH] Remove wrong typing --- minimal-notebook/test/test_nbconvert.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/minimal-notebook/test/test_nbconvert.py b/minimal-notebook/test/test_nbconvert.py index 9480f167..755c7f5c 100644 --- a/minimal-notebook/test/test_nbconvert.py +++ b/minimal-notebook/test/test_nbconvert.py @@ -6,8 +6,6 @@ import logging import pytest from pathlib import Path -from conftest import TrackedContainer - LOGGER = logging.getLogger(__name__) THIS_DIR = Path(__file__).parent.resolve() @@ -21,9 +19,7 @@ THIS_DIR = Path(__file__).parent.resolve() ("notebook_svg", "html"), ], ) -def test_nbconvert( - container: TrackedContainer, test_file: str, output_format: str -) -> None: +def test_nbconvert(container, test_file: str, output_format: str) -> None: """Check if nbconvert is able to convert a notebook file""" host_data_dir = THIS_DIR / "data" cont_data_dir = "/home/jovyan/data"