From 958198b20e4eec234c1c4e300e935f713b941b7c Mon Sep 17 00:00:00 2001 From: Kyle Hornberg Date: Tue, 16 Apr 2019 20:25:09 -0500 Subject: [PATCH] Style: yapf --- tests/test_methods.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/test_methods.py b/tests/test_methods.py index c7cc07b..89f8111 100644 --- a/tests/test_methods.py +++ b/tests/test_methods.py @@ -259,7 +259,9 @@ class TestClientMethods(object): mocker.patch('requests.get') headers = {'accept': 'application/vnd.github.ant-man-preview+json', 'Content-Type': 'application/json'} Octokit().oauth_authorizations.get_authorization( - authorization_id=100, headers={'accept': 'application/vnd.github.ant-man-preview+json'} + authorization_id=100, headers={ + 'accept': 'application/vnd.github.ant-man-preview+json' + } ) requests.get.assert_called_once_with('https://api.github.com/authorizations/100', params={}, headers=headers)