Skip to content

Commit 95de1aa

Browse files
authoredJun 20, 2024
Fix pylint warning (#1763)
1 parent d0b361a commit 95de1aa

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
 

‎.pylintrc

+2-2
Original file line numberDiff line numberDiff line change
@@ -549,5 +549,5 @@ min-public-methods=2
549549

550550
# Exceptions that will emit a warning when being caught. Defaults to
551551
# "BaseException, Exception".
552-
overgeneral-exceptions=BaseException,
553-
Exception
552+
overgeneral-exceptions=builtins.BaseException,
553+
builtins.Exception

‎qiskit_ibm_runtime/fake_provider/fake_backend.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -518,7 +518,7 @@ def refresh(self, service: QiskitRuntimeService) -> None:
518518
else:
519519
logger.info("There are no available new updates for %s.", self.backend_name)
520520

521-
except Exception as ex:
521+
except Exception as ex: # pylint: disable=broad-except
522522
logger.info("The refreshing of %s has failed: %s", self.backend_name, str(ex))
523523

524524

0 commit comments

Comments
 (0)
Please sign in to comment.