From 0128ea6a0feb0684b3c2ed8c3c0467ae261d7e7a Mon Sep 17 00:00:00 2001 From: Luciano Bello Date: Tue, 23 Apr 2024 16:27:54 +0200 Subject: [PATCH] linter --- qiskit/providers/provider.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/qiskit/providers/provider.py b/qiskit/providers/provider.py index 2d780be6f211..dc836e7f25ee 100644 --- a/qiskit/providers/provider.py +++ b/qiskit/providers/provider.py @@ -31,8 +31,9 @@ class Provider: @deprecate_func( since=1.1, - additional_msg="The abstract Provider and ProviderV1 classes are deprecated and will" - " be removed in 2.0. You can just remove it as the parent class and a `get_backend` method that returns the backends from `self.backend`.", + additional_msg="The abstract Provider and ProviderV1 classes are deprecated and will be " + "removed in 2.0. You can just remove it as the parent class and a `get_backend` " + "method that returns the backends from `self.backend`.", ) def __init__(self): pass @@ -45,8 +46,9 @@ class ProviderV1(Provider, ABC): @deprecate_func( since=1.1, - additional_msg="The abstract Provider and ProviderV1 classes are deprecated and will" - " be removed in 2.0. You can just remove it as the parent class and a `get_backend` method that returns the backends from `self.backend`.", + additional_msg="The abstract Provider and ProviderV1 classes are deprecated and will be " + "removed in 2.0. You can just remove it as the parent class and a `get_backend` " + "method that returns the backends from `self.backend`.", ) def get_backend(self, name=None, **kwargs): """Return a single backend matching the specified filtering.