From d390236318d8cac5f2afdb15b5f7a4bee1707d52 Mon Sep 17 00:00:00 2001 From: Xuwznln <18435084+Xuwznln@users.noreply.github.com> Date: Thu, 27 Nov 2025 13:47:12 +0800 Subject: [PATCH] Add get_regular_container func --- unilabos/resources/container.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/unilabos/resources/container.py b/unilabos/resources/container.py index 117eae41..f9772442 100644 --- a/unilabos/resources/container.py +++ b/unilabos/resources/container.py @@ -25,6 +25,8 @@ class RegularContainer(Container): def get_regular_container(name="container"): + r = RegularContainer(name=name) + r.category = "container" return RegularContainer(name=name) #