Skip to content

Commit

Permalink
black
Browse files Browse the repository at this point in the history
  • Loading branch information
scottpacknetflix committed May 10, 2024
1 parent 2c2e7dc commit 125f34f
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions tests/handlers/test_role_login_api.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Docstring in public module."""

import os
import sys
from unittest.mock import patch
Expand Down Expand Up @@ -63,8 +64,12 @@ def __init__(self, code, body):
self.body = body

class TestClient:
async def fetch(self, url, method="GET", body=None, headers=None, ssl_options=None):
return TestResp(code=200, body='{"SigninToken": "testTokenSignin456223"}')
async def fetch(
self, url, method="GET", body=None, headers=None, ssl_options=None
):
return TestResp(
code=200, body='{"SigninToken": "testTokenSignin456223"}'
)

mock_client.return_value = TestClient()
headers = {
Expand Down

0 comments on commit 125f34f

Please sign in to comment.