python-piped-api-client/piped_api/__init__.py

16 lines
239 B
Python
Raw Normal View History

2022-02-26 09:35:58 +00:00
import typing as t
from .client import PipedClient
from .models.comments import Comments
2022-02-27 07:40:58 +00:00
from setup import __doc__ as __sdoc__
__doc__ = __sdoc__
2022-02-26 09:35:58 +00:00
# Supress unused-import warnings:
if t.TYPE_CHECKING:
_ = [PipedClient, Comments]