Skip to content

Commit

Permalink
Import sorting
Browse files Browse the repository at this point in the history
  • Loading branch information
HGSilveri committed Nov 19, 2024
1 parent 4527cbf commit 09e42e7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pulser-core/pulser/backend/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@
from numpy.typing import ArrayLike

import pulser.math as pm
from pulser.backend.state import State
from pulser.backend.observable import Observable
from pulser.backend.state import State
from pulser.noise_model import NoiseModel

EVAL_TIMES_LITERAL = Literal["Full", "Minimal", "Final"]
Expand Down
4 changes: 2 additions & 2 deletions pulser-core/pulser/backend/observable.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@

from abc import ABC, abstractmethod
from collections.abc import Sequence
from typing import Any, TYPE_CHECKING
from typing import TYPE_CHECKING, Any

from pulser.backend.state import State
from pulser.backend.operator import Operator
from pulser.backend.results import Results
from pulser.backend.state import State

if TYPE_CHECKING:
from pulser.backend.config import EmulationConfig
Expand Down
2 changes: 1 addition & 1 deletion pulser-core/pulser/backend/operator.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
from collections.abc import Collection, Mapping, Sequence
from typing import Generic, Type, TypeVar

from pulser.backend.state import State, Eigenstate
from pulser.backend.state import Eigenstate, State

ArgScalarType = TypeVar("ArgScalarType")
ReturnScalarType = TypeVar("ReturnScalarType")
Expand Down

0 comments on commit 09e42e7

Please sign in to comment.