From 9a10b2b047aba8c866c092e9dedaec97f2305428 Mon Sep 17 00:00:00 2001 From: Harrison Chase Date: Tue, 31 Oct 2023 13:45:09 -0700 Subject: [PATCH] fix plate chain (#12673) --- templates/plate-chain/plate_chain/__init__.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/templates/plate-chain/plate_chain/__init__.py b/templates/plate-chain/plate_chain/__init__.py index f4e66c6f097..9506bcbd9a5 100644 --- a/templates/plate-chain/plate_chain/__init__.py +++ b/templates/plate-chain/plate_chain/__init__.py @@ -1 +1,3 @@ -__ALL__ = ["chain"] +from plate_chain.chain import chain + +__all__ = ["chain"]