Skip to content

Commit b25579e

Browse files
committed
reformat as requiired by prechecks
1 parent 5bcd7a3 commit b25579e

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

tests/unit/retry/test_retry_imports.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15+
1516
def test_legacy_imports_retry_unary_sync():
1617
# TODO: Delete this test when when we revert these imports on the
1718
# next major version release
1819
# (https://github.com/googleapis/python-api-core/issues/576)
1920

20-
from google.api_core.retry import logging
2121
from google.api_core.retry import datetime # noqa: F401
2222
from google.api_core.retry import functools # noqa: F401
2323
from google.api_core.retry import logging # noqa: F401
@@ -26,7 +26,12 @@ def test_legacy_imports_retry_unary_sync():
2626
from google.api_core.retry import time # noqa: F401
2727
from google.api_core.retry import inspect # noqa: F401
2828
from google.api_core.retry import warnings # noqa: F401
29-
from google.api_core.retry import Any, Callable, TypeVar, TYPE_CHECKING # noqa: F401
29+
from google.api_core.retry import (
30+
Any, # noqa: F401
31+
Callable, # noqa: F401
32+
TypeVar, # noqa: F401
33+
TYPE_CHECKING, # noqa: F401
34+
)
3035

3136
from google.api_core.retry import datetime_helpers # noqa: F401
3237
from google.api_core.retry import exceptions # noqa: F401

0 commit comments

Comments
 (0)