Explorar o código

Implement flatten as fallback

Denis K %!s(int64=8) %!d(string=hai) anos
pai
achega
1022b18bc8
Modificáronse 1 ficheiros con 4 adicións e 1 borrados
  1. 4 1
      jet/dashboard/dashboard.py

+ 4 - 1
jet/dashboard/dashboard.py

@@ -49,7 +49,10 @@ class Dashboard(object):
 
     def set_context(self, context):
         if isinstance(context, Context):
-            context = context.flatten()
+            flat = {}
+            for d in context.dicts:
+                flat.update(d)
+            context = flat
 
         self.context = context
         self.init_with_context(context)