fixed type in setup.py (#1242)

This commit is contained in:
Kevin Loftis 2020-11-26 05:40:14 -06:00 committed by GitHub
parent 8a43606670
commit 2ffbece713
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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')