Skip to content

Commit

Permalink
reformat as requiired by prechecks
Browse files Browse the repository at this point in the history
  • Loading branch information
vchudnov-g committed Jan 26, 2024
1 parent 5bcd7a3 commit fde7bd8
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion tests/unit/retry/test_retry_imports.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.


def test_legacy_imports_retry_unary_sync():
# TODO: Delete this test when when we revert these imports on the
# next major version release
Expand All @@ -26,7 +27,12 @@ def test_legacy_imports_retry_unary_sync():
from google.api_core.retry import time # noqa: F401
from google.api_core.retry import inspect # noqa: F401
from google.api_core.retry import warnings # noqa: F401
from google.api_core.retry import Any, Callable, TypeVar, TYPE_CHECKING # noqa: F401
from google.api_core.retry import (
Any,
Callable,
TypeVar,
TYPE_CHECKING,
) # noqa: F401

from google.api_core.retry import datetime_helpers # noqa: F401
from google.api_core.retry import exceptions # noqa: F401
Expand Down

0 comments on commit fde7bd8

Please sign in to comment.