Skip to content

Commit 7030b9c

Browse files
committed
fix linting error
Signed-off-by: Dave Bunten <[email protected]>
1 parent 8292dc6 commit 7030b9c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

vortex-python/python/vortex/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# SPDX-License-Identifier: Apache-2.0
22
# SPDX-FileCopyrightText: Copyright the Vortex contributors
33

4+
from importlib import metadata as _metadata
5+
46
from . import _lib, arrays, dataset, expr, file, io, ray, registry, scan
57
from ._lib.arrays import ( # pyright: ignore[reportMissingModuleSource]
68
AlpArray,
@@ -81,8 +83,6 @@
8183

8284
assert _lib, "Ensure we eagerly import the Vortex native library"
8385

84-
from importlib import metadata as _metadata
85-
8686
# Resolve the installed distribution version so it is available as vortex.__version__.
8787
__version__ = "unknown"
8888
try:

0 commit comments

Comments
 (0)