1
0
Fork 1
mirror of https://github.com/thatmattlove/hyperglass.git synced 2026-01-17 08:48:05 +00:00
thatmattlove-hyperglass/hyperglass/compat/__init__.py
2022-12-26 10:03:56 -05:00

10 lines
276 B
Python

"""Functions for maintaining compatibility with older Python versions or libraries."""
# Local
from ._sshtunnel import SSHTunnelForwarder, BaseSSHTunnelForwarderError, open_tunnel
__all__ = (
"BaseSSHTunnelForwarderError",
"open_tunnel",
"SSHTunnelForwarder",
)