From b7019ca5f36263608289595a0f5b552a2e32b906 Mon Sep 17 00:00:00 2001 From: Richard Neumann Date: Mon, 14 Feb 2022 09:57:23 +0100 Subject: [PATCH] Update type hint --- tests/test_config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_config.py b/tests/test_config.py index f8be230..4e0414c 100644 --- a/tests/test_config.py +++ b/tests/test_config.py @@ -3,7 +3,7 @@ from itertools import product from random import shuffle from string import printable -from typing import Iterator, Tuple +from typing import Iterator from unittest import TestCase from rcon.config import Config @@ -30,7 +30,7 @@ class TestConfig(TestCase): self.ports = range(65_536) @property - def _sockets(self) -> Iterator[Tuple[str, int]]: + def _sockets(self) -> Iterator[tuple[str, int]]: """Yields (host, port) tuples.""" return product(self.hosts, self.ports)