if else not return

This commit is contained in:
Nguyen Huu Thuong
2020-06-13 08:55:17 +02:00
parent 604f25d794
commit 366e654a7c

8
app.py
View File

@@ -113,22 +113,24 @@ def processes():
if not INPUT_FIRST_SSH:
print("SSH-SCP-SSH no first_ssh input found")
return
else:
print("+++++++++++++++++++Pipeline: RUNNING FIRST SSH+++++++++++++++++++")
connect(lambda c: ssh_process(c, INPUT_FIRST_SSH))
if not INPUT_SCP:
print("SSH-SCP-SSH no scp input found")
return
else:
print("+++++++++++++++++++Pipeline: RUNNING SCP+++++++++++++++++++")
connect(lambda c: scp_process(c, INPUT_SCP))
if not INPUT_LAST_SSH:
print("SSH-SCP-SSH no last_ssh input found")
return
else:
print("+++++++++++++++++++Pipeline: RUNNING LAST SSH+++++++++++++++++++")
connect(lambda c: ssh_process(c, INPUT_LAST_SSH))
pass
if __name__ == '__main__':
processes()