From 5404047c3c161cbaaba20a213baa858de52fd28c Mon Sep 17 00:00:00 2001 From: Brandon Date: Sun, 6 Aug 2023 15:57:02 -0500 Subject: [PATCH] Fix RTD --- hisock/utils.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hisock/utils.py b/hisock/utils.py index 9e16f4d..606e3fd 100644 --- a/hisock/utils.py +++ b/hisock/utils.py @@ -17,7 +17,7 @@ from dataclasses import dataclass from ipaddress import IPv4Address from re import search -from typing import Optional, Type, Union # Must use these for bare annots +from typing import List, Dict, Optional, Type, Union # Must use these for bare annots # Custom exceptions @@ -156,8 +156,8 @@ def __eq__(self, other: ClientInfo): float, None, ClientInfo, - list["Sendable"], - dict[ + List["Sendable"], + Dict[ Union[bytes, str, int, float, None, ClientInfo], "Sendable", ],