From 0cfacfc4f3131e3a0488ecd3f327b3a0300573ac Mon Sep 17 00:00:00 2001 From: Tom Fogal <60981+tfogal@users.noreply.github.com> Date: Wed, 8 Jan 2025 10:44:40 -0800 Subject: [PATCH] oops, bugfix somehow not caught earlier. --- thunder/dynamo/__init__.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/thunder/dynamo/__init__.py b/thunder/dynamo/__init__.py index d1cf1cb34..c7dfaba8b 100644 --- a/thunder/dynamo/__init__.py +++ b/thunder/dynamo/__init__.py @@ -1,4 +1,3 @@ from thunder.dynamo.compiler import ThunderCompiler, thunderfx -from thunder.dynamo.utils import last_traces -__all__ = ["ThunderCompiler", "thunderfx", "last_traces"] +__all__ = ["ThunderCompiler", "thunderfx"]