Skip to content

Commit dd76457

Browse files
committed
fix header
1 parent 9b50e3a commit dd76457

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

onnx_array_api/translate_api/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def translate_header(api: str = "light"):
1111
return textwrap.dedent(
1212
"""
1313
import numpy as np
14-
immort ml_dtypes
14+
import ml_dtypes
1515
from onnx_array_api.light_api import start
1616
from onnx_array_api.translate_api import translate
1717
"""
@@ -20,7 +20,7 @@ def translate_header(api: str = "light"):
2020
return textwrap.dedent(
2121
"""
2222
import numpy as np
23-
immort ml_dtypes
23+
import ml_dtypes
2424
import onnx
2525
import onnx.helper as oh
2626
import onnx.numpy_helper as onh
@@ -31,7 +31,7 @@ def translate_header(api: str = "light"):
3131
return textwrap.dedent(
3232
"""
3333
import numpy as np
34-
immort ml_dtypes
34+
import ml_dtypes
3535
import onnx
3636
from onnx_array_api.graph_api import GraphBuilder
3737
"""

0 commit comments

Comments
 (0)