Skip to content

Commit

Permalink
fix doc string
Browse files Browse the repository at this point in the history
Signed-off-by: gatici <[email protected]>
  • Loading branch information
gatici committed Dec 10, 2024
1 parent 13f93f9 commit 27ace70
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/charms/oai_ran_du_k8s/v0/fiveg_rfsim.py
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ def rfsim_address(self) -> Optional[IPvAnyAddress]:
"""Return address of the RFSIM.
Returns:
str: rfsim address which is equal to DU pod ip.
Optional[IPvAnyAddress]: rfsim address which is equal to DU pod ip.
"""
if remote_app_relation_data := self.get_provider_rfsim_information():
return remote_app_relation_data.rfsim_address
Expand All @@ -256,7 +256,7 @@ def sst(self) -> Optional[int]:
"""Return the Network Slice Service Type (SST).
Returns:
str: sst (Network Slice Service Type)
Optional[int]: sst (Network Slice Service Type)
"""
if remote_app_relation_data := self.get_provider_rfsim_information():
return remote_app_relation_data.sst
Expand All @@ -267,7 +267,7 @@ def sd(self) -> Optional[int]:
"""Return the Network Slice Differentiator (SD).
Returns:
str: sd (Network Slice Differentiator)
Optional[int] : sd (Network Slice Differentiator)
"""
if remote_app_relation_data := self.get_provider_rfsim_information():
return remote_app_relation_data.sd
Expand Down

0 comments on commit 27ace70

Please sign in to comment.