diff --git a/python/cugraph-dgl/cugraph_dgl/nn/conv/gatv2conv.py b/python/cugraph-dgl/cugraph_dgl/nn/conv/gatv2conv.py index 7e045261628..6e7e3d172d2 100644 --- a/python/cugraph-dgl/cugraph_dgl/nn/conv/gatv2conv.py +++ b/python/cugraph-dgl/cugraph_dgl/nn/conv/gatv2conv.py @@ -11,9 +11,9 @@ # See the License for the specific language governing permissions and # limitations under the License. -from typing import Optional, Union +from typing import Any, Optional, Union -from cugraph_dgl.nn.conv.base import Any, BaseConv, SparseGraph +from cugraph_dgl.nn.conv.base import BaseConv, SparseGraph from cugraph.utilities.utils import import_optional dgl = import_optional("dgl")