Skip to content

Commit 66da1a3

Browse files
committed
fix: ignore pyright missing _internal
1 parent c3e09af commit 66da1a3

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

python/python/lance_context/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from __future__ import annotations
22

3-
from ._internal import Context
4-
from ._internal import version as _version
3+
from ._internal import Context # pyright: ignore[reportMissingImports]
4+
from ._internal import version as _version # pyright: ignore[reportMissingImports]
55

66
__all__ = ["Context", "__version__"]
77

0 commit comments

Comments
 (0)