From b6905d8f8b30df7ac005beff458e24de22217833 Mon Sep 17 00:00:00 2001
From: Thor77 <thor77@thor77.org>
Date: Sat, 14 Jan 2023 18:23:12 +0100
Subject: [PATCH] Fix lint errors

---
 tsstats/tests/test_ident_map.py | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/tsstats/tests/test_ident_map.py b/tsstats/tests/test_ident_map.py
index 877f76a..76985da 100644
--- a/tsstats/tests/test_ident_map.py
+++ b/tsstats/tests/test_ident_map.py
@@ -9,10 +9,10 @@ from tsstats.utils import transform_pretty_identmap
 @pytest.fixture(scope='module')
 def identmap_clients():
     clients = Clients({
-            '1': '2',
-            '5': '2',
-            'UID1': 'UID2',
-            'UID5': 'UID2'
+        '1': '2',
+        '5': '2',
+        'UID1': 'UID2',
+        'UID5': 'UID2'
     })
     cl = Client('2', 'Client2')
     uidcl = Client('UID2', 'Client2++')