Skip to content

Commit

Permalink
(chore): anndata._config -> anndata._settings
Browse files Browse the repository at this point in the history
  • Loading branch information
ilan-gold committed Feb 8, 2024
1 parent f10bbde commit 4d4a710
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion anndata/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
# Backport package for exception groups
import exceptiongroup # noqa: F401

from ._config import settings
from ._core.anndata import AnnData
from ._core.merge import concat
from ._core.raw import Raw
Expand All @@ -35,6 +34,7 @@
read_umi_tools,
read_zarr,
)
from ._settings import settings
from ._warnings import (
ExperimentalFeatureWarning,
ImplicitModificationWarning,
Expand Down
2 changes: 1 addition & 1 deletion anndata/_core/anndata.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
from anndata._warnings import ImplicitModificationWarning

from .. import utils
from .._config import settings
from .._settings import settings
from ..compat import (
CupyArray,
CupySparseMatrix,
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion anndata/tests/test_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from scipy.sparse import csr_matrix, issparse

from anndata import AnnData
from anndata._config import settings
from anndata._settings import settings
from anndata.tests.helpers import assert_equal, gen_adata

# some test objects that we use below
Expand Down
2 changes: 1 addition & 1 deletion anndata/tests/test_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

import pytest

from anndata._config import (
from anndata._settings import (
SettingsManager,
check_and_get_bool,
check_and_get_environ_var,
Expand Down

0 comments on commit 4d4a710

Please sign in to comment.