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

@@ -10,7 +10,8 @@ from logging import LogRecord
from colorama import Fore, Style
from autogpt.config import Config, Singleton
from autogpt.config import Config
from autogpt.singleton import Singleton
from autogpt.speech import say_text
CFG = Config()