From 0625a33d3393a7ba660e582a9652b90e115a94e1 Mon Sep 17 00:00:00 2001
From: Moul <moul@moul.re>
Date: Wed, 28 Apr 2021 20:39:43 +0200
Subject: [PATCH] [mod] Remove unicode lines not necessary with Py3

- https://stackoverflow.com/a/37048998
- https://stackoverflow.com/q/23370025
---
 silkaj/cli.py           | 2 --
 silkaj/network_tools.py | 1 -
 2 files changed, 3 deletions(-)

diff --git a/silkaj/cli.py b/silkaj/cli.py
index f7a38185..fb4c0c86 100644
--- a/silkaj/cli.py
+++ b/silkaj/cli.py
@@ -15,8 +15,6 @@ You should have received a copy of the GNU Affero General Public License
 along with Silkaj. If not, see <https://www.gnu.org/licenses/>.
 """
 
-# -*- coding: utf-8 -*-
-
 import sys
 from click import group, help_option, version_option, option, pass_context
 
diff --git a/silkaj/network_tools.py b/silkaj/network_tools.py
index 742be9ad..e3687547 100644
--- a/silkaj/network_tools.py
+++ b/silkaj/network_tools.py
@@ -15,7 +15,6 @@ You should have received a copy of the GNU Affero General Public License
 along with Silkaj. If not, see <https://www.gnu.org/licenses/>.
 """
 
-from __future__ import unicode_literals
 import re
 import socket
 import logging
-- 
GitLab