Get Link Quality
Description
Gets link quality.
Function Signature:
def get_link_quality(interface: str) -> Any:
Parameters
- interface (str): Input value for
interface.
Returns
- Any: Return value from the function.
Example Usage
# Example usage
interface = "example"
result = get_link_quality(interface)
print(result)
Behavior
- Executes the function logic with the provided arguments.
- On success, returns the computed value or result object.
Error Handling
- Exceptions are handled within the function where implemented.