8 lines
187 B
Python
8 lines
187 B
Python
|
"""WiZ utils."""
|
||
|
from __future__ import annotations
|
||
|
|
||
|
|
||
|
def _short_mac(mac: str) -> str:
|
||
|
"""Get the short mac address from the full mac."""
|
||
|
return mac.replace(":", "").upper()[-6:]
|