From b82391deaaa6b7e1eaed6a431cabdbc0583bee46 Mon Sep 17 00:00:00 2001 From: Suhas Date: Sat, 23 Jan 2021 12:16:07 -0500 Subject: [PATCH] remove unused imports --- tests/test_config.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/test_config.py b/tests/test_config.py index 19ef3172..1f7672cc 100644 --- a/tests/test_config.py +++ b/tests/test_config.py @@ -1,12 +1,12 @@ -from typing import Any + import pytest -import pytest_mock + import mock import yaml from jrnl.args import parse_args from jrnl.jrnl import run -from jrnl import install, editor +from jrnl import install @pytest.fixture()