Skip to content

Commit

Permalink
fix: import Any in test_request_body.py
Browse files Browse the repository at this point in the history
  • Loading branch information
robswc committed Apr 2, 2024
1 parent 245e14b commit d759c1a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions tests/unit/test_cli/test_core_commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -409,6 +409,7 @@ def test_run_command_arguments_precedence(
else:
assert expected in mock_subprocess_run.call_args_list[0].args[0]


@pytest.fixture()
def unset_env() -> Generator[None, None, None]:
initial_env = {**os.environ}
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/test_openapi/test_request_body.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from dataclasses import dataclass
from typing import Callable, Dict, List, Type
from typing import Any, Callable, Dict, List, Type

import pytest
from typing_extensions import Annotated
Expand Down

0 comments on commit d759c1a

Please sign in to comment.