Skip to content

Commit

Permalink
clean up some imports
Browse files Browse the repository at this point in the history
  • Loading branch information
HighDiceRoller committed Dec 27, 2024
1 parent 74a3314 commit 790a41b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
5 changes: 2 additions & 3 deletions src/icepool/evaluator/multiset_evaluator.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,13 @@

from abc import ABC, abstractmethod
from collections import defaultdict
import enum
from functools import cached_property
import itertools
import math

from icepool.typing import T, U_co

from typing import Any, Callable, Collection, Generic, Hashable, Mapping, MutableMapping, Sequence, cast, TYPE_CHECKING, overload
from typing import (Any, Callable, Collection, Generic, Hashable, Mapping,
MutableMapping, Sequence, cast, TYPE_CHECKING, overload)

if TYPE_CHECKING:
from icepool.generator.alignment import Alignment
Expand Down
5 changes: 3 additions & 2 deletions src/icepool/multiset_expression.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,10 @@
import operator
import random

from icepool.typing import T, U, ImplicitConversionError, T
from types import EllipsisType
from icepool.typing import T, U, ImplicitConversionError, Outcome, T
from typing import Any, Callable, Collection, Generic, Hashable, Iterable, Iterator, Literal, Mapping, Self, Sequence, Type, TypeAlias, TypeVar, cast, overload
from typing import (Callable, Collection, Generic, Hashable, Iterator, Literal,
Mapping, Sequence, Type, TypeAlias, cast, overload)

from abc import ABC, abstractmethod

Expand Down
5 changes: 2 additions & 3 deletions src/icepool/operator/multiset_operator.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
__docformat__ = 'google'

import icepool
from icepool.order import Order, OrderReason, merge_order_preferences
from icepool.multiset_expression import MultisetExpression, InitialMultisetGeneration, PopMultisetGeneration

import itertools
import math

from icepool.typing import T, U, ImplicitConversionError, Outcome, T
from typing import Any, Callable, Collection, Generic, Hashable, Iterable, Iterator, Literal, Mapping, Self, Sequence, Type, TypeAlias, TypeVar, cast, overload
from icepool.typing import T
from typing import Sequence

from abc import abstractmethod

Expand Down

0 comments on commit 790a41b

Please sign in to comment.