Skip to content

Commit

Permalink
Fix lint errors (quantumlib#4634)
Browse files Browse the repository at this point in the history
  • Loading branch information
dabacon authored and rht committed May 1, 2023
1 parent d38e74b commit 3ccbf4e
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 5 deletions.
2 changes: 0 additions & 2 deletions cirq-core/cirq/circuits/circuit_operation_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.

from typing import List

import pytest, sympy

import cirq
Expand Down
2 changes: 1 addition & 1 deletion cirq-core/cirq/sim/act_on_args_container_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from typing import List, Dict, Any, Sequence, Tuple, Optional, Union
from typing import Any, Dict, List, Optional, Sequence, Union

import cirq

Expand Down
2 changes: 1 addition & 1 deletion cirq-core/cirq/sim/simulator_base_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
import math
from typing import List, Dict, Any, Sequence, Tuple, Union
from typing import Any, Dict, List, Sequence, Union

import numpy as np
import pytest
Expand Down
2 changes: 1 addition & 1 deletion cirq-google/cirq_google/engine/engine_sampler.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

from typing import List, TYPE_CHECKING, Union, Optional, cast, Sequence, Tuple
from typing import cast, List, Optional, Sequence, TYPE_CHECKING, Union

import cirq
from cirq_google import engine
Expand Down

0 comments on commit 3ccbf4e

Please sign in to comment.