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

@@ -2,7 +2,7 @@
import abc
from threading import Lock
from autogpt.config import AbstractSingleton
from autogpt.singleton import AbstractSingleton
class VoiceBase(AbstractSingleton):