File tree Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -282,7 +282,9 @@ async def _http_client(self):
282
282
else :
283
283
# We have a session
284
284
# Make sure it's still active
285
- await self .__http_client .ensure_active_token (self .__http_client .token )
285
+ await self .__http_client .ensure_active_token (
286
+ self .__http_client .token
287
+ )
286
288
# Use regular client, but add the access token if we have one
287
289
elif self .__http_client is None :
288
290
# We already have an access token
Original file line number Diff line number Diff line change @@ -282,7 +282,9 @@ def _http_client(self):
282
282
else :
283
283
# We have a session
284
284
# Make sure it's still active
285
- self .__http_client .ensure_active_token (self .__http_client .token )
285
+ self .__http_client .ensure_active_token (
286
+ self .__http_client .token
287
+ )
286
288
# Use regular client, but add the access token if we have one
287
289
elif self .__http_client is None :
288
290
# We already have an access token
Original file line number Diff line number Diff line change 3
3
4
4
5
5
@pytest .mark .api_dev
6
- def test_group (
7
- authenticated_client , test_group
8
- ):
6
+ def test_group (authenticated_client , test_group ):
9
7
with authenticated_client as client :
10
8
group = client .group (test_group )
11
9
assert group is not None
You can’t perform that action at this time.
0 commit comments