From 578cc4745f3b1fb67e3e4b39f2ef880677b8256c Mon Sep 17 00:00:00 2001 From: Vignesh Venkatasubramanian Vaidyanathan <62492557+VigneshVSV@users.noreply.github.com> Date: Sat, 5 Oct 2024 10:48:52 +0200 Subject: [PATCH] bug fix instance resources --- hololinked/server/thing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hololinked/server/thing.py b/hololinked/server/thing.py index e0cb1be..640f6ee 100644 --- a/hololinked/server/thing.py +++ b/hololinked/server/thing.py @@ -211,7 +211,7 @@ class attribute, see docs. def __post_init__(self): - # self._prepare_resources() + self._prepare_resources() # bug fix, has to be called at two places, one here and one before run self.load_properties_from_DB() self.logger.info(f"initialialised Thing class {self.__class__.__name__} with instance name {self.instance_name}")