File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ def _load_schemas(self):
50
50
tsdb = lnt .server .db .testsuitedb .TestSuiteDB (self , name , suite )
51
51
self .testsuite [name ] = tsdb
52
52
# Order testuites alphabetically to get groupings
53
- self .testsuite = dict (sorted (self .testsuite .items ()))
53
+ self .testsuite = dict (sorted (self .testsuite .items ()))
54
54
55
55
def __init__ (self , path , config , baseline_revision = 0 ):
56
56
# If the path includes no database type, assume sqlite.
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ class LNTObjectJSONEncoder(flask.json.JSONEncoder):
53
53
"""Take SQLAlchemy objects and jsonify them. If the object has an __json__
54
54
method, use that instead."""
55
55
56
- def __init__ (self , * args , ** kwargs ):
56
+ def __init__ (self , * args , ** kwargs ):
57
57
super (LNTObjectJSONEncoder , self ).__init__ (* args , ** kwargs )
58
58
59
59
def default (self , obj ):
You can’t perform that action at this time.
0 commit comments