From 80e39a8fc7de105510cbbdca8507f2a4b8c9e01d Mon Sep 17 00:00:00 2001 From: Unit 193 Date: Sat, 22 Jun 2024 21:19:36 -0400 Subject: New upstream version 1.27.1. --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'setup.py') 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): -- cgit v1.2.3