mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Add missing return statements.
This commit is contained in:
parent
201242f302
commit
ac72fd9d2c
1 changed files with 3 additions and 3 deletions
|
@ -129,9 +129,9 @@ class AnsibleCoreCI(object):
|
|||
def start(self):
|
||||
"""Start instance."""
|
||||
if is_shippable():
|
||||
self.start_shippable()
|
||||
else:
|
||||
self.start_remote()
|
||||
return self.start_shippable()
|
||||
|
||||
return self.start_remote()
|
||||
|
||||
def start_remote(self):
|
||||
"""Start instance for remote development/testing."""
|
||||
|
|
Loading…
Reference in a new issue