Jellyfin(8096), OrbStack(8097) 포트 충돌으로 변경. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
15 lines
327 B
Python
15 lines
327 B
Python
from __future__ import annotations
|
|
|
|
import warnings
|
|
|
|
warnings.warn(
|
|
(
|
|
"importing niquests._async is deprecated and absolutely discouraged. "
|
|
"It will be removed in a future release. In general, never import private "
|
|
"modules."
|
|
),
|
|
DeprecationWarning,
|
|
)
|
|
|
|
from .async_session import * # noqa
|