From 1da44ed05f16421fa8aa8a945a30509a99ec2802 Mon Sep 17 00:00:00 2001 From: Mohammad Torkashvand <mohammad.torkashvand@geant.org> Date: Thu, 3 Apr 2025 11:28:28 +0200 Subject: [PATCH] make vale happy --- gso/products/product_types/ias.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gso/products/product_types/ias.py b/gso/products/product_types/ias.py index 693ad644e..b70ba1130 100644 --- a/gso/products/product_types/ias.py +++ b/gso/products/product_types/ias.py @@ -26,12 +26,12 @@ class IASInactive(BaseL3SubscriptionModel, is_base=True): @property def l3_core(self) -> L3CoreServiceBlockInactive: - """Getter: Retrieve the l3_core from the 'ias' attribute.""" + """Getter: Retrieve the l3_core from the ``ias`` attribute.""" return self.ias.l3_core @l3_core.setter def l3_core(self, value: L3CoreServiceBlockInactive) -> None: - """Setter: Set the l3_core on the 'ias' attribute.""" + """Setter: Set the l3_core on the ``ias`` attribute.""" self.ias.l3_core = value @property @@ -59,12 +59,12 @@ class ImportedIASInactive(BaseL3SubscriptionModel, is_base=True): @property def l3_core(self) -> L3CoreServiceBlockInactive: - """Getter: Retrieve the l3_core from the 'ias' attribute.""" + """Getter: Retrieve the l3_core from the ``ias`` attribute.""" return self.ias.l3_core @l3_core.setter def l3_core(self, value: L3CoreServiceBlockInactive) -> None: - """Setter: Set the l3_core on the 'ias' attribute.""" + """Setter: Set the l3_core on the ``ias`` attribute.""" self.ias.l3_core = value @property -- GitLab