mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-03-12 04:35:40 -07:00
18 lines
456 B
Python
18 lines
456 B
Python
"""Intended for internal use only."""
|
|
import sys
|
|
|
|
import ipaddress
|
|
|
|
# pylint: skip-file
|
|
|
|
if sys.version_info[0] == 2:
|
|
def compat_ip_address(address):
|
|
"""Intended for internal use only."""
|
|
if isinstance(address, bytes):
|
|
address = address.decode()
|
|
return ipaddress.ip_address(address)
|
|
else:
|
|
def compat_ip_address(address):
|
|
"""Intended for internal use only."""
|
|
return ipaddress.ip_address(address)
|