Skip to content

Commit ce4c8d0

Browse files
authored
Upgrade typing for tests (via pyupgrade) (#287)
1 parent cea24f7 commit ce4c8d0

File tree

2 files changed

+20
-20
lines changed

2 files changed

+20
-20
lines changed

tests/test_index.py

+7-7
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import pickle
55
import tempfile
66
import unittest
7-
from typing import Dict, Iterator, Tuple
7+
from typing import Iterator
88

99
import numpy as np
1010
import pytest
@@ -23,7 +23,7 @@ def setUp(self) -> None:
2323

2424
def boxes15_stream(
2525
self, interleaved: bool = True
26-
) -> Iterator[Tuple[int, Tuple[float, float, float, float], int]]:
26+
) -> Iterator[tuple[int, tuple[float, float, float, float], int]]:
2727
boxes15 = np.genfromtxt("boxes_15x15.data")
2828
for i, (minx, miny, maxx, maxy) in enumerate(boxes15):
2929
if interleaved:
@@ -394,7 +394,7 @@ def setUp(self) -> None:
394394

395395
def boxes15_stream(
396396
self, interleaved: bool = True
397-
) -> Iterator[Tuple[int, Tuple[float, float, float, float], int]]:
397+
) -> Iterator[tuple[int, tuple[float, float, float, float], int]]:
398398
for i, (minx, miny, maxx, maxy) in enumerate(self.boxes15):
399399
if interleaved:
400400
yield (i, (minx, miny, maxx, maxy), 42)
@@ -456,7 +456,7 @@ def test_interleaving(self) -> None:
456456

457457
def data_gen(
458458
interleaved: bool = True,
459-
) -> Iterator[Tuple[int, Tuple[float, float, float, float], int]]:
459+
) -> Iterator[tuple[int, tuple[float, float, float, float], int]]:
460460
for i, (minx, miny, maxx, maxy) in enumerate(self.boxes15):
461461
if interleaved:
462462
yield (i, (minx, miny, maxx, maxy), 42)
@@ -590,7 +590,7 @@ def data_gen(
590590

591591
# go through the traversal and see if everything is close
592592
assert all(
593-
all(np.allclose(a, b) for a, b in zip(L, E))
593+
all(np.allclose(a, b) for a, b in zip(L, E)) # type: ignore
594594
for L, E in zip(leaves, expected)
595595
)
596596

@@ -724,7 +724,7 @@ class TestException(Exception):
724724
pass
725725

726726
def create_index() -> index.Index:
727-
def gen() -> Iterator[Tuple[int, Tuple[int, int, int, int], None]]:
727+
def gen() -> Iterator[tuple[int, tuple[int, int, int, int], None]]:
728728
# insert at least 6 or so before the exception
729729
for i in range(10):
730730
yield (i, (1, 2, 3, 4), None)
@@ -767,7 +767,7 @@ def destroy(self, returnError):
767767

768768
def clear(self) -> None:
769769
"""Clear all our data"""
770-
self.dict: Dict = {}
770+
self.dict: dict = {}
771771

772772
def loadByteArray(self, page, returnError):
773773
"""Returns the data for page or returns an error"""

tests/test_tpr.py

+13-13
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import unittest
55
from collections import defaultdict, namedtuple
66
from math import ceil
7-
from typing import Any, Iterator, Optional, Tuple, Union
7+
from typing import Any, Iterator
88

99
import numpy as np
1010

@@ -25,15 +25,15 @@ def getX(self, t: float) -> float:
2525
def getY(self, t: float) -> float:
2626
return self.y + self.y_vel * (t - self.time)
2727

28-
def getXY(self, t: float) -> Tuple[float, float]:
28+
def getXY(self, t: float) -> tuple[float, float]:
2929
return self.getX(t), self.getY(t)
3030

3131
def get_coordinates(
32-
self, t_now: Optional[float] = None
33-
) -> Tuple[
34-
Tuple[float, float, float, float],
35-
Tuple[float, float, float, float],
36-
Union[float, Tuple[float, float]],
32+
self, t_now: float | None = None
33+
) -> tuple[
34+
tuple[float, float, float, float],
35+
tuple[float, float, float, float],
36+
float | tuple[float, float],
3737
]:
3838
return (
3939
(self.x, self.y, self.x, self.y),
@@ -49,10 +49,10 @@ class QueryCartesian(
4949

5050
def get_coordinates(
5151
self,
52-
) -> Tuple[
53-
Tuple[float, float, float, float],
54-
Tuple[float, float, float, float],
55-
Tuple[float, float],
52+
) -> tuple[
53+
tuple[float, float, float, float],
54+
tuple[float, float, float, float],
55+
tuple[float, float],
5656
]:
5757
return (
5858
(self.x - self.dx, self.y - self.dy, self.x + self.dx, self.y + self.dy),
@@ -78,9 +78,9 @@ def data_generator(
7878
min_y: int = 0,
7979
max_x: int = 1,
8080
max_y: int = 1,
81-
) -> Iterator[Tuple[str, int, Any]]:
81+
) -> Iterator[tuple[str, int, Any]]:
8282
def create_object(
83-
id_: float, time: float, x: Optional[float] = None, y: Optional[float] = None
83+
id_: float, time: float, x: float | None = None, y: float | None = None
8484
) -> Cartesian:
8585
# Create object with random or defined x, y and random velocity
8686
if x is None:

0 commit comments

Comments
 (0)