aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
diff options
context:
space:
mode:
authorLibravatarUnit 193 <unit193@unit193.net>2024-06-22 21:19:36 -0400
committerLibravatarUnit 193 <unit193@unit193.net>2024-06-22 21:19:36 -0400
commit80e39a8fc7de105510cbbdca8507f2a4b8c9e01d (patch)
treebb5caa2f5fafc5116b8f89e659085ffbd8a918f2 /setup.py
parent1c28712d865e30ed752988ba0b6944882250b665 (diff)
New upstream version 1.27.1.upstream/1.27.1
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index ee66f5f..5f9dbc8 100644
--- a/setup.py
+++ b/setup.py
@@ -9,8 +9,8 @@ import warnings
def read(fname):
path = os.path.join(os.path.dirname(__file__), fname)
- with open(path, encoding="utf-8") as file:
- return file.read()
+ with open(path, encoding="utf-8") as fp:
+ return fp.read()
def check_file(fname):