From c9ab6f6b97a0ff469b955c1134db93707e66eee7 Mon Sep 17 00:00:00 2001
From: Thor77 <thor77@thor77.org>
Date: Sat, 16 Sep 2017 22:31:15 +0200
Subject: [PATCH] Add encoding-header to missing files

---
 tsstats/events.py               | 1 +
 tsstats/tests/__init__.py       | 1 +
 tsstats/tests/conftest.py       | 1 +
 tsstats/tests/test_client.py    | 1 +
 tsstats/tests/test_config.py    | 1 +
 tsstats/tests/test_ident_map.py | 1 +
 tsstats/tests/test_log.py       | 1 +
 tsstats/tests/test_template.py  | 1 +
 8 files changed, 8 insertions(+)

diff --git a/tsstats/events.py b/tsstats/events.py
index b2372bb..8c9071a 100644
--- a/tsstats/events.py
+++ b/tsstats/events.py
@@ -1,3 +1,4 @@
+# -*- coding: utf-8 -*-
 from collections import namedtuple
 
 Event = namedtuple(
diff --git a/tsstats/tests/__init__.py b/tsstats/tests/__init__.py
index e69de29..40a96af 100644
--- a/tsstats/tests/__init__.py
+++ b/tsstats/tests/__init__.py
@@ -0,0 +1 @@
+# -*- coding: utf-8 -*-
diff --git a/tsstats/tests/conftest.py b/tsstats/tests/conftest.py
index 40e3124..1c7a2e7 100644
--- a/tsstats/tests/conftest.py
+++ b/tsstats/tests/conftest.py
@@ -1,3 +1,4 @@
+# -*- coding: utf-8 -*-
 from os import remove
 
 import pytest
diff --git a/tsstats/tests/test_client.py b/tsstats/tests/test_client.py
index 6ea3461..263703e 100644
--- a/tsstats/tests/test_client.py
+++ b/tsstats/tests/test_client.py
@@ -1,3 +1,4 @@
+# -*- coding: utf-8 -*-
 import pytest
 
 from tsstats.client import Client, Clients
diff --git a/tsstats/tests/test_config.py b/tsstats/tests/test_config.py
index b8bfd42..96e2923 100644
--- a/tsstats/tests/test_config.py
+++ b/tsstats/tests/test_config.py
@@ -1,3 +1,4 @@
+# -*- coding: utf-8 -*-
 import pytest
 
 from tsstats.config import load
diff --git a/tsstats/tests/test_ident_map.py b/tsstats/tests/test_ident_map.py
index 9615acc..877f76a 100644
--- a/tsstats/tests/test_ident_map.py
+++ b/tsstats/tests/test_ident_map.py
@@ -1,3 +1,4 @@
+# -*- coding: utf-8 -*-
 import pytest
 
 from tsstats.client import Client, Clients
diff --git a/tsstats/tests/test_log.py b/tsstats/tests/test_log.py
index dae4d4d..80ee6c7 100644
--- a/tsstats/tests/test_log.py
+++ b/tsstats/tests/test_log.py
@@ -1,3 +1,4 @@
+# -*- coding: utf-8 -*-
 import pendulum
 import pytest
 
diff --git a/tsstats/tests/test_template.py b/tsstats/tests/test_template.py
index 246bae9..1a070f7 100644
--- a/tsstats/tests/test_template.py
+++ b/tsstats/tests/test_template.py
@@ -1,3 +1,4 @@
+# -*- coding: utf-8 -*-
 import logging
 
 import pendulum