Skip to content

Commit

Permalink
fix precommit
Browse files Browse the repository at this point in the history
  • Loading branch information
giovp committed Nov 21, 2023
1 parent d742bf6 commit 6c78611
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/moscot/_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
GenericCostFn_t = Literal["barcode_distance", "leaf_distance", "custom"]
CostFn_t = Union[str, GenericCostFn_t, OttCostFn_t]
CostFnMap_t = Union[Union[OttCostFn_t, GenericCostFn_t], Mapping[str, Union[OttCostFn_t, GenericCostFn_t]]]
PathLike = Union[os.PathLike[str], str]
PathLike = Union[os.PathLike, str] # type: ignore[type-arg]
Policy_t = Literal[
"sequential",
"star",
Expand Down

0 comments on commit 6c78611

Please sign in to comment.