Add missing return statements.

pull/24324/head
Matt Clay 8 years ago
parent 201242f302
commit ac72fd9d2c

@ -129,9 +129,9 @@ class AnsibleCoreCI(object):
def start(self): def start(self):
"""Start instance.""" """Start instance."""
if is_shippable(): if is_shippable():
self.start_shippable() return self.start_shippable()
else:
self.start_remote() return self.start_remote()
def start_remote(self): def start_remote(self):
"""Start instance for remote development/testing.""" """Start instance for remote development/testing."""

Loading…
Cancel
Save