Skip to content

Commit 3ee94ae

Browse files
committed
Suppress pyright error on internal method import
1 parent 6a882c2 commit 3ee94ae

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

harp/io.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import numpy as np
77
import numpy.typing as npt
88
import pandas as pd
9-
from pandas._typing import Axes
9+
from pandas._typing import Axes # pyright: ignore[reportPrivateImportUsage]
1010

1111
from harp.typing import _BufferLike, _FileLike
1212

harp/reader.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
from numpy import dtype
1212
from pandas import DataFrame, Series
13-
from pandas._typing import Axes
13+
from pandas._typing import Axes # pyright: ignore[reportPrivateImportUsage]
1414

1515
from harp.io import MessageType, read
1616
from harp.model import BitMask, GroupMask, Model, PayloadMember, Register

0 commit comments

Comments
 (0)