Skip to content

Commit

Permalink
Fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
CBroz1 committed Jan 16, 2024
1 parent 6fdb0cc commit 5d0b15f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ keywords = [
dependencies = [
"pydotplus",
"dask",
"position_tools",
"position_tools>=0.1",
"track_linearization>=2.3",
"non_local_detector",
"ripple_detection",
Expand Down
4 changes: 2 additions & 2 deletions src/spyglass/common/common_position.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@
try:
from position_tools import get_centroid
except ImportError:
logger.warnint("Please update position_tools to >= 0.1.0")
from position_tools import get_centroid
logger.warning("Please update position_tools to >= 0.1.0")
from position_tools import get_centriod as get_centroid

schema = dj.schema("common_position")

Expand Down

0 comments on commit 5d0b15f

Please sign in to comment.