From 5f7b62a0e0c7b865681c86087a23f4bf5447bd08 Mon Sep 17 00:00:00 2001 From: onyx-and-iris Date: Sat, 7 Mar 2026 14:29:32 +0000 Subject: [PATCH] add missing cached_property --- vban_cmd/packet/nbs0.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vban_cmd/packet/nbs0.py b/vban_cmd/packet/nbs0.py index 36f1537..f392363 100644 --- a/vban_cmd/packet/nbs0.py +++ b/vban_cmd/packet/nbs0.py @@ -227,7 +227,7 @@ class VbanRTPacketNBS0(VbanRTPacket): bus_gain_raw = struct.unpack('<8h', self._busGaindB100) return tuple(round(val * 0.01, 2) for val in bus_gain_raw) - @property + @cached_property def labels(self) -> Labels: """returns Labels namedtuple of strip and bus labels"""