Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,9 @@ line-length = 120
warn_return_any = true
warn_unused_configs = true

[tool.ruff]
exclude = ['*.ipynb']

[[tool.mypy.overrides]]
module = "scipy.*"
ignore_missing_imports = true
Expand Down Expand Up @@ -151,6 +154,7 @@ max-line-length=150 # Deliberately "too long" to avoid disagreements with black
good-names=['df','da','x','y','z','i','j','k','ae'] # pylint: disable=E0015
disable = [
"too-many-positional-arguments",
"logging-fstring-interpolation"
]

[tool.pixi.project]
Expand Down
4 changes: 2 additions & 2 deletions src/scores/spatial/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Import the functions from the implementations into the public API
"""

from scores.spatial.cra_impl import cra, cra_2d, cra_core_2d
from scores.spatial.cra_impl import cra
from scores.spatial.fss_impl import fss_2d, fss_2d_binary, fss_2d_single_field

__all__ = ["fss_2d", "fss_2d_binary", "fss_2d_single_field", "cra", "cra_2d", "cra_core_2d"]
__all__ = ["fss_2d", "fss_2d_binary", "fss_2d_single_field", "cra"]
Loading
Loading