diff --git a/gso/products/product_types/ias.py b/gso/products/product_types/ias.py index 693ad644ed6046848e7d0c5b3395bec673583ac5..b70ba11307d05563278b2a8ea984915f2a26ca22 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