Skip to content

Commit

Permalink
remove unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
doichanj committed Jul 5, 2024
1 parent 586abe8 commit 07ef817
Show file tree
Hide file tree
Showing 7 changed files with 1 addition and 554 deletions.
4 changes: 1 addition & 3 deletions qiskit_aer/backends/aerbackend.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,9 @@
import logging
import time
import uuid
import warnings
from abc import ABC, abstractmethod

from qiskit.circuit import QuantumCircuit, ParameterExpression, Delay
from qiskit.compiler import assemble
from qiskit.providers import BackendV2 as Backend
from qiskit.providers import convert_to_target
from qiskit.providers.models import BackendStatus
Expand Down Expand Up @@ -144,7 +142,7 @@ def _convert_binds(self, circuits, parameter_binds, idx_maps=None):
return parameterizations

# pylint: disable=arguments-renamed
def run(self, circuits, validate=False, parameter_binds=None, **run_options):
def run(self, circuits, parameter_binds=None, **run_options):
"""Run circuits on the backend.
Args:
Expand Down
1 change: 0 additions & 1 deletion qiskit_aer/backends/statevector_simulator.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
import logging
from warnings import warn

import psutil
from qiskit.providers.options import Options
from qiskit.providers.models import QasmBackendConfiguration

Expand Down
1 change: 0 additions & 1 deletion qiskit_aer/backends/unitary_simulator.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
import logging
from warnings import warn

import psutil
from qiskit.providers.options import Options
from qiskit.providers.models import QasmBackendConfiguration

Expand Down
1 change: 0 additions & 1 deletion qiskit_aer/jobs/aerjob.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
"""This module implements the job class used for AerBackend objects."""

import logging
import warnings

from qiskit.providers import JobV1 as Job
from qiskit.providers import JobStatus, JobError
Expand Down
Loading

0 comments on commit 07ef817

Please sign in to comment.