12 lines
181 B
Python
12 lines
181 B
Python
import typing as t
|
|
|
|
|
|
from .client import PipedClient
|
|
|
|
from .models.comments import Comments
|
|
|
|
|
|
|
|
# Supress unused-import warnings:
|
|
if t.TYPE_CHECKING:
|
|
_ = [PipedClient, Comments]
|