From 2ffbece713469b797b6015f9c22202977089c60f Mon Sep 17 00:00:00 2001 From: Kevin Loftis Date: Thu, 26 Nov 2020 05:40:14 -0600 Subject: [PATCH] fixed type in setup.py (#1242) --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index fe5b404c..33ed3ecd 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ from setuptools import setup from io import open -with open('requirments.txt', encoding="utf-8-sig") as f: +with open('requirements.txt', encoding="utf-8-sig") as f: requirements = f.readlines() requirements.append('tqdm')