10 lines
192 B
Python
10 lines
192 B
Python
from ray._common.deprecation import Deprecated
|
|
|
|
|
|
@Deprecated(
|
|
help="The SpecDict API has been deprecated and cancelled without " "replacement.",
|
|
error=True,
|
|
)
|
|
class SpecDict:
|
|
pass
|