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 Feb 3, 2025
1 parent ff3d6f0 commit 8f6df47
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/ansys/openapi/common/_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ def parse_header(self, value: str) -> CaseInsensitiveOrderedDict:

@staticmethod
def _render_options(
scheme: List[Union[str, List[str]]]
scheme: List[Union[str, List[str]]],
) -> Optional[Union[str, CaseInsensitiveOrderedDict]]:
if len(scheme) == 1:
return None
Expand Down
2 changes: 1 addition & 1 deletion tests/test_session_creation.py
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ def test_can_connect_with_ntlm(mocker, auth_mode):

mocker.patch(
"os.urandom",
return_value=b"\xDE\xAD\xBE\xEF\xDE\xAD\xBE\xEF",
return_value=b"\xde\xad\xbe\xef\xde\xad\xbe\xef",
)

mocker.patch("_session.HttpNtlmAuth", MockNTLMAuth)
Expand Down

0 comments on commit 8f6df47

Please sign in to comment.