Skip to content

Commit e4d60a8

Browse files
committed
fixed lint
1 parent f0ff168 commit e4d60a8

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

google/cloud/bigtable/data/_async/client.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -480,7 +480,9 @@ async def _manage_channel(
480480
old_channel = super_channel.swap_channel(new_channel)
481481
self._invalidate_channel_stubs()
482482
# give old_channel a chance to complete existing rpcs
483-
await CrossSync.event_wait(self._is_closed, grace_period, async_break_early=False)
483+
await CrossSync.event_wait(
484+
self._is_closed, grace_period, async_break_early=False
485+
)
484486
await old_channel.close()
485487
# subtract the time spent waiting for the channel to be replaced
486488
next_refresh = random.uniform(refresh_interval_min, refresh_interval_max)

0 commit comments

Comments
 (0)