lfcli_base.py: do not import realm, circular refs result

This commit is contained in:
Jed Reynolds
2020-06-09 13:05:36 -07:00
parent dfc6929924
commit d91fe50d8f

View File

@@ -7,7 +7,6 @@ from pprint import pprint
import LANforge.LFUtils
from LANforge.LFUtils import *
import realm
from realm import Realm
class LFCliBase:
# do not use `super(LFCLiBase,self).__init__(self, host, port, _debugOn)
@@ -22,7 +21,6 @@ class LFCliBase:
self.haltOnError = _halt_on_error
self.mgr_url = "http://%s:%s" % (self.lfjson_host, self.lfjson_port)
self.test_results = []
self.realm = Realm(_lfjson_host, _lfjson_port, debug=_debug)
def clear_test_results(self):
self.test_results.clear()