mirror of
https://github.com/wassname/catalyst.git
synced 2026-08-15 12:15:22 +08:00
PERF: Look up expired futures from in-memory Futures
instead of queries to the db.
This commit is contained in:
+1
-1
@@ -502,7 +502,7 @@ class BarData(object):
|
||||
"""
|
||||
|
||||
def __init__(self, data=None):
|
||||
self._data = data or {}
|
||||
self._data = data if data is not None else {}
|
||||
self._contains_override = None
|
||||
|
||||
def __contains__(self, name):
|
||||
|
||||
Reference in New Issue
Block a user