alanmacd commented on code in PR #12063: URL: https://github.com/apache/tvm/pull/12063#discussion_r918452702
########## tests/python/unittest/test_runtime_graph.py: ########## @@ -14,21 +14,26 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. +"""Test runtime graph""" + +import json +import numpy as np + import tvm import tvm.testing from tvm import te, runtime -import numpy as np -import json from tvm import rpc from tvm import relay from tvm.contrib import utils, graph_executor @tvm.testing.requires_llvm def test_graph_simple(): + """Test simple graph""" + # pylint: disable:invalid-name Review Comment: fix redundant disables -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
