File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -90,8 +90,8 @@ def _sha256_json(obj: Any) -> str:
9090
9191L1_RESP_CACHE_TTL = int ("600" ) # seconds
9292L1_VER_CACHE_TTL = int ("3600" ) # seconds
93- L1_RESP_CACHE = TTLCache (maxsize = 128 , ttl = L1_RESP_CACHE_TTL )
94- L1_VER_CACHE = TTLCache (maxsize = 256 , ttl = L1_VER_CACHE_TTL )
93+ L1_RESP_CACHE : Any = TTLCache (maxsize = 128 , ttl = L1_RESP_CACHE_TTL )
94+ L1_VER_CACHE : Any = TTLCache (maxsize = 256 , ttl = L1_VER_CACHE_TTL )
9595_L1_LOCK = threading .RLock ()
9696
9797
Original file line number Diff line number Diff line change @@ -758,7 +758,7 @@ def backfill_model_runs(
758758 .values (model_run_id = mv_run_id , model_version = mv_version )
759759 )
760760 result = local_session .get ().execute (stmt )
761- updated_count = result .rowcount or 0 # type: ignore
761+ updated_count = result .rowcount or 0 # type: ignore
762762 local_session .get ().commit ()
763763
764764 return {
You can’t perform that action at this time.
0 commit comments