Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
benfred committed Mar 21, 2024
1 parent b595308 commit 8a01dd9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions python/cuvs/cuvs/neighbors/brute_force/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@
# limitations under the License.


from .brute_force import Index, build, search
from .brute_force import FlatIndex, build, search

__all__ = ["Index", "build", "search"]
__all__ = ["FlatIndex", "build", "search"]
2 changes: 1 addition & 1 deletion python/cuvs/cuvs/neighbors/brute_force/brute_force.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import numpy as np

cimport cuvs.common.cydlpack

from cuvs.common.Resources import auto_sync_resources
from cuvs.common.resources import auto_sync_resources

from cython.operator cimport dereference as deref
from libc.stdint cimport uint32_t
Expand Down

0 comments on commit 8a01dd9

Please sign in to comment.