Misc lint stuff from pycharm...

that has been applied to decompyle3 already
This commit is contained in:
rocky
2022-09-16 15:38:13 -04:00
parent 4260deea11
commit 4b2a2e218a
12 changed files with 31 additions and 20 deletions

View File

@@ -1,4 +1,5 @@
#!/usr/bin/env python
import setuptools
import sys
"""Setup script for the 'uncompyle6' distribution."""
@@ -39,9 +40,7 @@ from __pkginfo__ import (
zip_safe,
)
from setuptools import setup, find_packages
setup(
setuptools.setup(
author=author,
author_email=author_email,
classifiers=classifiers,
@@ -52,7 +51,7 @@ setup(
long_description=long_description,
long_description_content_type="text/x-rst",
name=modname,
packages=find_packages(),
packages=setuptools.find_packages(),
py_modules=py_modules,
test_suite="nose.collector",
url=web,