Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Jan 7, 2025
1 parent 7e9a063 commit e4d179f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 15 deletions.
2 changes: 1 addition & 1 deletion src/moscot/neural/base/problems/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from moscot.neural.base.problems.problem import NeuralOTProblem

__all__ = ["NeuralOTProblem"]
__all__ = ["NeuralOTProblem"]
18 changes: 4 additions & 14 deletions src/moscot/neural/base/problems/problem.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,21 +12,16 @@
Union,
)


import numpy as np
import pandas as pd

from anndata import AnnData

from moscot import backends
from moscot._types import ArrayLike, Device_t
from moscot.base.output import (
BaseNeuralOutput,
)
from moscot.base.problems._utils import (
wrap_prepare,
wrap_solve,
)
from moscot.base.output import BaseNeuralOutput
from moscot.base.problems._utils import wrap_prepare, wrap_solve
from moscot.base.problems.problem import BaseProblem
from moscot.base.solver import OTSolver
from moscot.utils.subset_policy import ( # type:ignore[attr-defined]
ExplicitPolicy,
Expand All @@ -35,12 +30,7 @@
SubsetPolicy,
create_policy,
)
from moscot.utils.tagged_array import (
DistributionCollection,
DistributionContainer,
)

from moscot.base.problems.problem import BaseProblem
from moscot.utils.tagged_array import DistributionCollection, DistributionContainer

K = TypeVar("K", bound=Hashable)

Expand Down

0 comments on commit e4d179f

Please sign in to comment.