mirror of https://github.com/kortix-ai/suna.git
fix: redis import fix
This commit is contained in:
parent
8f4c6fe17e
commit
d1d881dbc5
|
@ -3,11 +3,14 @@ import logging
|
||||||
import os
|
import os
|
||||||
from datetime import datetime
|
from datetime import datetime
|
||||||
from typing import Dict, List, Optional
|
from typing import Dict, List, Optional
|
||||||
|
import sys
|
||||||
|
|
||||||
|
sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
|
||||||
|
|
||||||
from services import redis
|
from services import redis
|
||||||
|
|
||||||
logger = logging.getLogger(__name__)
|
logger = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|
||||||
class FeatureFlagManager:
|
class FeatureFlagManager:
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
"""Initialize with existing Redis service"""
|
"""Initialize with existing Redis service"""
|
||||||
|
|
Loading…
Reference in New Issue