incorrectly class attributes
This commit is contained in:
parent
6f8db835ab
commit
5b701821a9
|
@ -213,10 +213,10 @@ class FacetsResponse(object):
|
||||||
|
|
||||||
class Engine(object):
|
class Engine(object):
|
||||||
"""An Engine keeps track of Facets, and responses to facet computation."""
|
"""An Engine keeps track of Facets, and responses to facet computation."""
|
||||||
facets = []
|
|
||||||
facet_index_by_id = {} # dict of facets by Facet object id
|
|
||||||
|
|
||||||
def __init__(self, *facets, **kwargs):
|
def __init__(self, *facets, **kwargs):
|
||||||
|
self.facets = []
|
||||||
|
self.facet_index_by_id = {} # dict of facets by Facet object id
|
||||||
self.set_facets(*facets)
|
self.set_facets(*facets)
|
||||||
self.mode = kwargs.get('mode', 'row-based')
|
self.mode = kwargs.get('mode', 'row-based')
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue