Skip to content

Commit

Permalink
Add pylint directives
Browse files Browse the repository at this point in the history
  • Loading branch information
junrushao authored and sunggg committed Dec 16, 2021
1 parent e53341d commit 56347b7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion python/tvm/meta_schedule/builder/local_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
from .builder import BuilderInput, BuilderResult, PyBuilder


logger = logging.getLogger(__name__)
logger = logging.getLogger(__name__) # pylint: disable=invalid-name


def _serialize_params(params: Optional[Dict[str, NDArray]]) -> Optional[bytearray]:
Expand Down
2 changes: 1 addition & 1 deletion python/tvm/meta_schedule/runner/local_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
run_evaluator_common,
)

logger = logging.getLogger(__name__)
logger = logging.getLogger(__name__) # pylint: disable=invalid-name


class LocalRunnerFuture(RunnerFuture):
Expand Down
2 changes: 1 addition & 1 deletion python/tvm/meta_schedule/runner/rpc_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
)


logger = logging.getLogger(__name__)
logger = logging.getLogger(__name__) # pylint: disable=invalid-name


class RPCRunnerFuture(RunnerFuture):
Expand Down

0 comments on commit 56347b7

Please sign in to comment.