Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Apr 2, 2023
1 parent b5bd526 commit 9efe0ff
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion jira/jirashell.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@ def oauth_dance(server, consumer_key, key_cert_data, print_tokens=False, verify=
verify = server.startswith("https")

# step 1: get request tokens
oauth = OAuth1(consumer_key, signature_method=SIGNATURE_RSA_SHA256, rsa_key=key_cert_data)
oauth = OAuth1(
consumer_key, signature_method=SIGNATURE_RSA_SHA256, rsa_key=key_cert_data
)
r = requests.post(
server + "/plugins/servlet/oauth/request-token", verify=verify, auth=oauth
)
Expand Down

0 comments on commit 9efe0ff

Please sign in to comment.