Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Fix broken sanity check #20763

Merged
merged 1 commit into from
Dec 1, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions python/mxnet/context.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
# under the License.
"""Context management API of mxnet."""
from warnings import warn
from .device import (Device, _current, cpu, gpu, cpu_pinned,
num_gpus, gpu_memory_info) # pylint: disable=unused-import
from .device import Device, _current, cpu, gpu, cpu_pinned # pylint: disable=unused-import
from .device import num_gpus, gpu_memory_info # pylint: disable=unused-import


def Context(*args, **kwargs):
Expand Down