Refactor/move singleton out of config module (#3161)

This commit is contained in:
James Collins
2023-04-24 15:24:57 -07:00
committed by GitHub
parent 83b91a31bc
commit dfcbf6eee6
8 changed files with 10 additions and 9 deletions

View File

@@ -1,7 +1,8 @@
"""Base class for memory providers."""
import abc
from autogpt.config import AbstractSingleton, Config
from autogpt.config import Config
from autogpt.singleton import AbstractSingleton
cfg = Config()