From 589605fe92d6a055c5b9b32261aac1dcb81e2221 Mon Sep 17 00:00:00 2001
From: Florian Bruhin <git@the-compiler.org>
Date: Fri, 9 Feb 2018 10:39:16 +0100
Subject: [PATCH] Fix lint

---
 tests/unit/config/test_configfiles.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/tests/unit/config/test_configfiles.py b/tests/unit/config/test_configfiles.py
index 63f6fbd3f..8659cf891 100644
--- a/tests/unit/config/test_configfiles.py
+++ b/tests/unit/config/test_configfiles.py
@@ -169,7 +169,8 @@ class TestYaml:
         assert '  old:' not in lines
         assert '  new:' not in lines
 
-    def test_renamed_key_unknown_target(self, monkeypatch, yaml, config_tmpdir):
+    def test_renamed_key_unknown_target(self, monkeypatch, yaml,
+                                        config_tmpdir):
         """A key marked as renamed with invalid name should raise an error."""
         autoconfig = config_tmpdir / 'autoconfig.yml'
         autoconfig.write_text('global:\n  old: value', encoding='utf-8')