Skip to content

Commit

Permalink
refactor: Remove not used type
Browse files Browse the repository at this point in the history
  • Loading branch information
Stranger6667 committed Oct 2, 2020
1 parent 33e1463 commit 1afd935
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/schemathesis/types.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
from pathlib import Path
from typing import TYPE_CHECKING, Any, Callable, Dict, List, NewType, Set, Tuple, Union
from typing import TYPE_CHECKING, Any, Callable, Dict, List, Set, Tuple, Union

from hypothesis.strategies import SearchStrategy

if TYPE_CHECKING:
from .hooks import HookContext

Schema = NewType("Schema", Dict[str, Any]) # pragma: no mutate
PathLike = Union[Path, str] # pragma: no mutate

Query = Dict[str, Any] # pragma: no mutate
Expand Down

0 comments on commit 1afd935

Please sign in to comment.