PEP8
This commit is contained in:
parent
5ce14bee2c
commit
ee870e2d12
2 changed files with 9 additions and 6 deletions
|
@ -15,14 +15,14 @@ def clone_public_data():
|
|||
|
||||
out, error = shell.call(
|
||||
"git clone -b master --single-branch {} {}".format(
|
||||
config.get('public_repo'),
|
||||
constants.PUBLIC_DATA_DIR)
|
||||
config.get('public_repo'),
|
||||
constants.PUBLIC_DATA_DIR
|
||||
)
|
||||
)
|
||||
return error
|
||||
|
||||
|
||||
def clone_private_data():
|
||||
exit_code = 0
|
||||
if os.path.isdir(constants.PRIVATE_DATA_DIR):
|
||||
initial = os.getcwd()
|
||||
os.chdir(constants.PRIVATE_DATA_DIR)
|
||||
|
@ -33,9 +33,10 @@ def clone_private_data():
|
|||
return error
|
||||
else:
|
||||
out, error = shell.call(
|
||||
"git clone -b master --single-branch {} {}".format(
|
||||
config.get('private_repo'),
|
||||
constants.PRIVATE_DATA_DIR)
|
||||
"git clone -b master --single-branch {} {}".format(
|
||||
config.get('private_repo'),
|
||||
constants.PRIVATE_DATA_DIR
|
||||
)
|
||||
)
|
||||
if error:
|
||||
return error
|
||||
|
@ -58,6 +59,7 @@ def go_to_data(subdir=''):
|
|||
os.chdir(path)
|
||||
return path
|
||||
|
||||
|
||||
def clean():
|
||||
shutil.rmtree(constants.PUBLIC_DATA_DIR)
|
||||
shutil.rmtree(constants.PRIVATE_DATA_DIR)
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
import subprocess
|
||||
|
||||
|
||||
def call(command):
|
||||
shell = subprocess.Popen(command, stdout=subprocess.PIPE, shell=True)
|
||||
output, error = shell.communicate()
|
||||
|
|
Reference in a new issue