Skip to content

Commit

Permalink
Merge pull request #498 from astronomy-commons/reimport_search
Browse files Browse the repository at this point in the history
Reimport `*Search` from root `__init__.py`
  • Loading branch information
hombit authored Nov 8, 2024
2 parents 6129472 + 95ff43c commit cad5981
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/tutorials/join_catalogs.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"outputs": [],
"source": [
"import lsdb\n",
"from lsdb.core.search import ConeSearch"
"from lsdb import ConeSearch"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/margins.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
},
"outputs": [],
"source": [
"from lsdb.core.search import BoxSearch\n",
"from lsdb import BoxSearch\n",
"\n",
"box = BoxSearch(ra=(179.5, 180.1), dec=(9.4, 10))\n",
"\n",
Expand Down
1 change: 1 addition & 0 deletions src/lsdb/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
from ._version import __version__
from .catalog import Catalog, MarginCatalog
from .core.search import BoxSearch, ConeSearch, PolygonSearch
from .loaders.dataframe.from_dataframe import from_dataframe
from .loaders.hats.read_hats import read_hats

0 comments on commit cad5981

Please sign in to comment.