mirror of
https://github.com/bigscience-workshop/petals
synced 2024-10-31 09:20:41 +00:00
10 lines
212 B
Python
10 lines
212 B
Python
import warnings
|
|
|
|
warnings.warn(
|
|
"petals.dht_utils has been moved to petals.utils.dht. This alias will be removed in Petals 2.2.0+",
|
|
DeprecationWarning,
|
|
stacklevel=2,
|
|
)
|
|
|
|
from petals.utils.dht import *
|