From 5a06c69dc5b950abb63ac50e56f0068674e4c868 Mon Sep 17 00:00:00 2001 From: Ramana Radhakrishnan Date: Tue, 9 Jul 2019 12:14:22 +0100 Subject: [PATCH] Fix pylint issue in vta/python/vta/top/graphpack.py This appears in linting using the docker scripts. I'm not sure why this isn't failing in the standard CI for TVM and it might be that the docker images haven't been updated in the CI system. python3 -m pylint vta/python/vta --rcfile=/workspace/tests/lint/pylintrc Using config file /workspace/tests/lint/pylintrc ************* Module vta.top.graphpack C:131, 4: Missing method docstring (missing-docstring) --- vta/python/vta/top/graphpack.py | 1 + 1 file changed, 1 insertion(+) diff --git a/vta/python/vta/top/graphpack.py b/vta/python/vta/top/graphpack.py index 98dcab2c07f9..d894fc0dbec6 100644 --- a/vta/python/vta/top/graphpack.py +++ b/vta/python/vta/top/graphpack.py @@ -129,6 +129,7 @@ def __init__(self, bfactor, cfactor, weight_bits): super().__init__() def visit_call(self, call): + """ Visit the children. """ # First visit the children. oshape = _get_shape(call) odtype = call.checked_type.dtype