pylint: fix: multiple-statements

Reviewed-By: Florence Blanc-Renaud <frenaud@redhat.com>
This commit is contained in:
Jan Barta 2016-06-02 14:21:41 +02:00 committed by Martin Basti
parent 22f4045f72
commit 94909d21db
3 changed files with 6 additions and 3 deletions

View File

@ -36,7 +36,8 @@ Operating System :: Unix
# BEFORE importing distutils, remove MANIFEST. distutils doesn't properly
# update it when the contents of directories change.
if os.path.exists('MANIFEST'): os.remove('MANIFEST')
if os.path.exists('MANIFEST'):
os.remove('MANIFEST')
def setup_package():

View File

@ -36,7 +36,8 @@ Operating System :: Unix
# BEFORE importing distutils, remove MANIFEST. distutils doesn't properly
# update it when the contents of directories change.
if os.path.exists('MANIFEST'): os.remove('MANIFEST')
if os.path.exists('MANIFEST'):
os.remove('MANIFEST')
def setup_package():

View File

@ -37,7 +37,8 @@ Operating System :: Unix
# BEFORE importing distutils, remove MANIFEST. distutils doesn't properly
# update it when the contents of directories change.
if os.path.exists('MANIFEST'): os.remove('MANIFEST')
if os.path.exists('MANIFEST'):
os.remove('MANIFEST')
def setup_package():