diff options
author | engn33r <engn33r@users.noreply.github.com> | 2021-05-04 17:11:04 -0700 |
---|---|---|
committer | engn33r <engn33r@users.noreply.github.com> | 2021-05-04 17:11:04 -0700 |
commit | dc3f5c469c6874c02544b64d2e1aa1c29370c16f (patch) | |
tree | 7054cd4ce9a2c866f6fad719549a65706d75f50d /setup.py | |
parent | 70739568cf922c34d4707b86d5f6dfc367f6e12d (diff) | |
download | websocket-client-dc3f5c469c6874c02544b64d2e1aa1c29370c16f.tar.gz |
PEP8 style compliance fixes
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -33,7 +33,7 @@ install_requires = ["six"] tests_require = [] if sys.version_info[0] == 2 and sys.version_info[1] < 7: - tests_require.append('unittest2==0.8.0') + tests_require.append('unittest2==0.8.0') insecure_pythons = '2.6, ' + ', '.join("2.7.{pv}".format(pv=pv) for pv in range(10)) |