mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
pylint: fix: multiple-statements
Reviewed-By: Florence Blanc-Renaud <frenaud@redhat.com>
This commit is contained in:
parent
22f4045f72
commit
94909d21db
@ -36,7 +36,8 @@ Operating System :: Unix
|
|||||||
|
|
||||||
# BEFORE importing distutils, remove MANIFEST. distutils doesn't properly
|
# BEFORE importing distutils, remove MANIFEST. distutils doesn't properly
|
||||||
# update it when the contents of directories change.
|
# 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():
|
def setup_package():
|
||||||
|
|
||||||
|
@ -36,7 +36,8 @@ Operating System :: Unix
|
|||||||
|
|
||||||
# BEFORE importing distutils, remove MANIFEST. distutils doesn't properly
|
# BEFORE importing distutils, remove MANIFEST. distutils doesn't properly
|
||||||
# update it when the contents of directories change.
|
# 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():
|
def setup_package():
|
||||||
|
|
||||||
|
@ -37,7 +37,8 @@ Operating System :: Unix
|
|||||||
|
|
||||||
# BEFORE importing distutils, remove MANIFEST. distutils doesn't properly
|
# BEFORE importing distutils, remove MANIFEST. distutils doesn't properly
|
||||||
# update it when the contents of directories change.
|
# 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():
|
def setup_package():
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user