From 5667e8d5a1d9415caacdc85a1ffbae7cb211f88c Mon Sep 17 00:00:00 2001 From: Ali Date: Thu, 15 Feb 2024 14:21:16 +0100 Subject: [PATCH 1/2] adding JointMemoryLoader to the init --- emote/memory/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/emote/memory/__init__.py b/emote/memory/__init__.py index ba3109a2..af98c9d7 100644 --- a/emote/memory/__init__.py +++ b/emote/memory/__init__.py @@ -9,6 +9,7 @@ MemoryLoader, MemoryWarmup, TableMemoryProxy, + JointMemoryLoader, ) from .table import Table @@ -21,4 +22,5 @@ "MemoryImporterCallback", "LoggingProxyWrapper", "MemoryWarmup", + "JointMemoryLoader", ] From b5f6317af8cf5dcc90d251bc93251349fd323732 Mon Sep 17 00:00:00 2001 From: Ali Date: Thu, 15 Feb 2024 14:31:11 +0100 Subject: [PATCH 2/2] fixing formatting --- emote/memory/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/emote/memory/__init__.py b/emote/memory/__init__.py index af98c9d7..1d9f2a78 100644 --- a/emote/memory/__init__.py +++ b/emote/memory/__init__.py @@ -4,12 +4,12 @@ from .callbacks import MemoryImporterCallback from .memory import ( + JointMemoryLoader, LoggingProxyWrapper, MemoryExporterProxyWrapper, MemoryLoader, MemoryWarmup, TableMemoryProxy, - JointMemoryLoader, ) from .table import Table