Switch to using fast cached_property implementation in propcache (#127339)

This commit is contained in:
J. Nick Koston
2024-10-03 13:11:02 -05:00
committed by GitHub
parent 58f786f6d0
commit 0f29fd3e10
81 changed files with 116 additions and 82 deletions

View File

@@ -23,7 +23,6 @@ from dataclasses import dataclass
import datetime
import enum
import functools
from functools import cached_property
import inspect
import logging
import os
@@ -45,6 +44,7 @@ from typing import (
)
from urllib.parse import urlparse
from propcache import cached_property
from typing_extensions import TypeVar
import voluptuous as vol
import yarl