Skip to content

Commit

Permalink
Remove "coding: utf-8" source declarations
Browse files Browse the repository at this point in the history
Now that we only support Python 3, we know that the encoding of source
files is UTF-8 by default: https://www.python.org/dev/peps/pep-3120/.
  • Loading branch information
bbc2 committed Jul 13, 2021
1 parent 9e522b1 commit 9292074
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 5 deletions.
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
import io
from setuptools import setup

Expand Down
1 change: 0 additions & 1 deletion src/dotenv/main.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
from __future__ import absolute_import, print_function, unicode_literals

import io
Expand Down
1 change: 0 additions & 1 deletion tests/test_cli.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
import os

import pytest
Expand Down
1 change: 0 additions & 1 deletion tests/test_main.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

import io
Expand Down
1 change: 0 additions & 1 deletion tests/test_parser.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
import io

import pytest
Expand Down

0 comments on commit 9292074

Please sign in to comment.