python: whitespace

This commit is contained in:
Jed Reynolds
2020-07-24 14:46:43 -07:00
parent bed2f6e0d3
commit 6332a322b0

View File

@@ -12,8 +12,7 @@ class LFCliBase:
# do not use `super(LFCLiBase,self).__init__(self, host, port, _debug)
# that is py2 era syntax and will force self into the host variable, making you
# very confused.
def __init__(self, _lfjson_host, _lfjson_port, _debug=False, _halt_on_error=False, _exit_on_error=False,
_exit_on_fail=False):
def __init__(self, _lfjson_host, _lfjson_port, _debug=False, _halt_on_error=False, _exit_on_error=False, _exit_on_fail=False):
self.fail_pref = "FAILED: "
self.pass_pref = "PASSED: "
self.lfclient_host = _lfjson_host