Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
tqchen committed Mar 27, 2021
1 parent 8bd7418 commit 5acfae6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
2 changes: 1 addition & 1 deletion python/tvm/exec/popen_worker.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
import threading
import traceback
import pickle
import cloudpickle
import logging
import cloudpickle

from tvm.contrib.popen_pool import StatusKind

Expand Down
6 changes: 1 addition & 5 deletions python/tvm/exec/rpc_proxy.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,10 @@
# under the License.
# pylint: disable=redefined-outer-name, invalid-name
"""RPC web proxy, allows redirect to websocket based RPC servers(browsers)"""
from __future__ import absolute_import

import logging
import argparse
import multiprocessing
import sys
import os
from ..rpc.proxy import Proxy
from tvm.rpc.proxy import Proxy


def find_example_resource():
Expand Down
2 changes: 1 addition & 1 deletion python/tvm/rpc/proxy.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,12 @@
"RPCProxy module requires tornado package %s. Try 'pip install tornado'." % error_msg
)

from tvm.contrib.popen_pool import PopenWorker
from . import _ffi_api
from . import base
from .base import TrackerCode
from .server import _server_env
from .._ffi.base import py_str
from tvm.contrib.popen_pool import PopenWorker


class ForwardHandler(object):
Expand Down

0 comments on commit 5acfae6

Please sign in to comment.