Skip to content

Commit c2a0766

Browse files
committed
fix pylint
1 parent 19dc2e2 commit c2a0766

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

tf2onnx/custom_opsets/onnx_ml.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,20 @@
11
# Copyright (c) Microsoft Corporation. All rights reserved.
22
# Licensed under the MIT license.
33
""" tf2onnx mapping functions for onnx ml domain. """
4-
import numpy as np
5-
6-
from onnx import onnx_pb
74
from tf2onnx import constants
85
from tf2onnx.handler import tf_op
96

7+
8+
# pylint: disable=unused-argument,missing-docstring,unnecessary-pass
9+
1010
@tf_op("HashTableV2")
1111
class HashTable:
1212
@classmethod
1313
def version_11(cls, ctx, node, **kwargs):
1414
""" HashTable will be removed """
1515
pass
1616

17+
1718
@tf_op("LookupTableFindV2")
1819
class LookupTableFind:
1920
@classmethod

0 commit comments

Comments
 (0)