import/export: Fix black formatting.

This commit is contained in:
Alex Vandiver 2021-03-08 13:08:35 -08:00
parent ba7da6d5c0
commit 1926daa244
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ def mocked_requests_get(*args: str, headers: Dict[str, str]) -> MockResponse:
if args != ("https://slack.com/api/users.list",):
return MockResponse(None, 404)
if (headers.get("Authorization") != "Bearer xoxp-valid-token"):
if headers.get("Authorization") != "Bearer xoxp-valid-token":
return MockResponse({"ok": False, "error": "invalid_auth"}, 200)
return MockResponse({"ok": True, "members": "user_data"}, 200)