Skip to content

Commit fde7bd8

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

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

tests/unit/retry/test_retry_imports.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
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
@@ -26,7 +27,12 @@ def test_legacy_imports_retry_unary_sync():
2627
from google.api_core.retry import time # noqa: F401
2728
from google.api_core.retry import inspect # noqa: F401
2829
from google.api_core.retry import warnings # noqa: F401
29-
from google.api_core.retry import Any, Callable, TypeVar, TYPE_CHECKING # noqa: F401
30+
from google.api_core.retry import (
31+
Any,
32+
Callable,
33+
TypeVar,
34+
TYPE_CHECKING,
35+
) # noqa: F401
3036

3137
from google.api_core.retry import datetime_helpers # noqa: F401
3238
from google.api_core.retry import exceptions # noqa: F401

0 commit comments

Comments
 (0)