Skip to content

Commit

Permalink
Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
jbirddog committed Feb 20, 2024
1 parent a0d332f commit 3a33032
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion src/connector_http/commands/get_request_v2.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@ def __init__(self,
basic_auth_password: str | None = None,
attempts: int | None = None,
):
HttpRequestBase.__init__(self, url=url, headers=headers, basic_auth_username=basic_auth_username, basic_auth_password=basic_auth_password)
HttpRequestBase.__init__(self, url=url,
headers=headers,
basic_auth_username=basic_auth_username,
basic_auth_password=basic_auth_password)

self.params = params or {}

Expand Down
2 changes: 1 addition & 1 deletion src/connector_http/http_request_base.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import json
import time
import xmltodict
from collections.abc import Callable

import requests # type: ignore
import xmltodict
from spiffworkflow_connector_command.command_interface import CommandErrorDict
from spiffworkflow_connector_command.command_interface import CommandResponseDict
from spiffworkflow_connector_command.command_interface import ConnectorProxyResponseDict
Expand Down

0 comments on commit 3a33032

Please sign in to comment.