From 17f55f232a3d0671f1b797743b7f4a1b4f8e2870 Mon Sep 17 00:00:00 2001 From: Thomas Wilson Date: Tue, 31 Dec 2019 22:59:43 +0800 Subject: [PATCH] Keep pylint happy --- configspec/manager.py | 1 + tests/test_configspec.py | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/configspec/manager.py b/configspec/manager.py index df31f73..bb77f1f 100644 --- a/configspec/manager.py +++ b/configspec/manager.py @@ -1,6 +1,7 @@ import re import toml from copy import deepcopy +import toml from .specification import ConfigSpecification, InvalidConfigError diff --git a/tests/test_configspec.py b/tests/test_configspec.py index cb40e87..e1236c3 100644 --- a/tests/test_configspec.py +++ b/tests/test_configspec.py @@ -1,6 +1,7 @@ +# pylint: disable=redefined-outer-name +from copy import deepcopy import pytest import configspec -from copy import deepcopy @pytest.fixture