Skip to content

Commit

Permalink
Fixes imports
Browse files Browse the repository at this point in the history
  • Loading branch information
56kyle committed Aug 19, 2023
1 parent 59485f4 commit 8d9282e
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/pytest_static/parametric.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

from _pytest.python import Metafunc

from pytest_static.type_sets import PREDEFINED_TYPE_SETS
from src.pytest_static.type_sets import PREDEFINED_TYPE_SETS


T = TypeVar("T")
Expand Down
2 changes: 1 addition & 1 deletion src/pytest_static/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import pytest
from _pytest.python import Metafunc

from pytest_static.parametric import parametrize_types
from src.pytest_static.parametric import parametrize_types


def pytest_generate_tests(metafunc: Metafunc) -> None:
Expand Down
3 changes: 0 additions & 3 deletions src/pytest_static/type_sets.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,6 @@
*TripleQuotes,
}

# Float
FloatParams: Set[float] = {
0.0,
-0.0,
Expand All @@ -163,7 +162,6 @@
float("nan"),
}

# Complex
ComplexParams: Set[complex] = {
0j,
1j,
Expand All @@ -180,7 +178,6 @@
(-1e10 - 1e10j),
}

# bytes
BytesParams: Set[bytes] = {
b"",
b"\x00",
Expand Down

0 comments on commit 8d9282e

Please sign in to comment.