From c7a5b7e9a68ffed21fe27475c891d6d632275eac Mon Sep 17 00:00:00 2001 From: Adam Johnson Date: Tue, 17 May 2022 09:14:14 +0100 Subject: [PATCH] Remove utf-8 coding headers --- iso3166/__init__.py | 2 -- tests/test_listings.py | 2 -- tests/test_lookup.py | 2 -- 3 files changed, 6 deletions(-) diff --git a/iso3166/__init__.py b/iso3166/__init__.py index 55d655e..9743394 100644 --- a/iso3166/__init__.py +++ b/iso3166/__init__.py @@ -1,5 +1,3 @@ -# -*- coding: utf-8 -*- - import re from typing import Dict, Iterator, NamedTuple, Type, TypeVar, Union, overload diff --git a/tests/test_listings.py b/tests/test_listings.py index b36a6d5..66aa87b 100644 --- a/tests/test_listings.py +++ b/tests/test_listings.py @@ -1,5 +1,3 @@ -# -*- coding: utf-8 -*- - import iso3166 diff --git a/tests/test_lookup.py b/tests/test_lookup.py index bd9b59a..385e928 100644 --- a/tests/test_lookup.py +++ b/tests/test_lookup.py @@ -1,5 +1,3 @@ -# -*- coding: utf-8 -*- - from typing import List, Union import pytest import iso3166