core/homeassistant/components/wiz/utils.py

8 lines
187 B
Python
Raw Normal View History

"""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:]