mirror of
https://github.com/zebrajr/pytorch.git
synced 2025-12-06 12:20:52 +01:00
Ensures pyrefly will only silence one specific error code pyrefly check lintrunner Pull Request resolved: https://github.com/pytorch/pytorch/pull/166249 Approved by: https://github.com/oulgen
10 lines
233 B
Python
10 lines
233 B
Python
"""Backward compatibility module for torch.onnx.utils."""
|
|
|
|
from __future__ import annotations
|
|
|
|
|
|
__all__: list[str] = []
|
|
|
|
# pyrefly: ignore [deprecated]
|
|
from torch.onnx._internal.torchscript_exporter.utils import * # noqa: F401,F403
|