Update quotes in typing stubs

This commit is contained in:
Roman Mogylatov 2022-01-16 19:46:18 -05:00
parent d4933baec1
commit a38ca647c3
2 changed files with 11 additions and 11 deletions

View File

@ -20,11 +20,11 @@ from typing import (
from .providers import Provider, Self, ProviderParent
C_Base = TypeVar('C_Base', bound='Container')
C = TypeVar('C', bound='DeclarativeContainer')
C_Overriding = TypeVar('C_Overriding', bound='DeclarativeContainer')
T = TypeVar('T')
TT = TypeVar('TT')
C_Base = TypeVar("C_Base", bound="Container")
C = TypeVar("C", bound="DeclarativeContainer")
C_Overriding = TypeVar("C_Overriding", bound="DeclarativeContainer")
T = TypeVar("T")
TT = TypeVar("TT")
class WiringConfiguration:

View File

@ -35,11 +35,11 @@ from . import resources
Injection = Any
ProviderParent = Union['Provider', Any]
T = TypeVar('T')
TT = TypeVar('TT')
P = TypeVar('P', bound='Provider')
BS = TypeVar('BS', bound='BaseSingleton')
ProviderParent = Union["Provider", Any]
T = TypeVar("T")
TT = TypeVar("TT")
P = TypeVar("P", bound="Provider")
BS = TypeVar("BS", bound="BaseSingleton")
class Provider(Generic[T]):
@ -230,7 +230,7 @@ class TypedConfigurationOption(Callable[T]):
class Configuration(Object[Any]):
DEFAULT_NAME: str = 'config'
DEFAULT_NAME: str = "config"
def __init__(
self,
name: str = DEFAULT_NAME,