Skip to content

Commit

Permalink
Merge branch 'main' of github.com:Small-Bodies-Node/sbsearch
Browse files Browse the repository at this point in the history
  • Loading branch information
mkelley committed Nov 25, 2024
2 parents e6ceb51 + 2fb3121 commit 6262cef
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion sbsearch/model/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
from sqlalchemy.dialects.postgresql import ARRAY
import astropy.units as u
from astropy.coordinates import SkyCoord
from ..spatial import SpatialIndexer # pylint: disable=E0611
from ..spatial import SpatialIndexer # noqa: F401
from ..exceptions import EdgeCrossingDetected

__all__: List[str] = [
Expand Down
2 changes: 1 addition & 1 deletion sbsearch/sbsearch.py
Original file line number Diff line number Diff line change
Expand Up @@ -787,7 +787,7 @@ def find_observations_intersecting_line(
_a = np.array(a, float)
_b = np.array(b, float)
if len(_b) != len(_a):
raise ValueError("Size of a and be must match.")
raise ValueError("Size of a and b must match.")
query_about = True

observations: List[Observation] = []
Expand Down
2 changes: 1 addition & 1 deletion sbsearch/test/test_sbsearch.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def test_add_get_observations(self, sbs, observations):
mjd_stop=59215.2,
fov="10:20,10:30,20:30,20:20",
spatial_terms="",
source="another survey"
source="another survey",
)
)
sbs.db.session.commit()
Expand Down

0 comments on commit 6262cef

Please sign in to comment.