Skip to content

Commit a38ca64

Browse files
committed
Update quotes in typing stubs
1 parent d4933ba commit a38ca64

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

src/dependency_injector/containers.pyi

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ from typing import (
2020
from .providers import Provider, Self, ProviderParent
2121

2222

23-
C_Base = TypeVar('C_Base', bound='Container')
24-
C = TypeVar('C', bound='DeclarativeContainer')
25-
C_Overriding = TypeVar('C_Overriding', bound='DeclarativeContainer')
26-
T = TypeVar('T')
27-
TT = TypeVar('TT')
23+
C_Base = TypeVar("C_Base", bound="Container")
24+
C = TypeVar("C", bound="DeclarativeContainer")
25+
C_Overriding = TypeVar("C_Overriding", bound="DeclarativeContainer")
26+
T = TypeVar("T")
27+
TT = TypeVar("TT")
2828

2929

3030
class WiringConfiguration:

src/dependency_injector/providers.pyi

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ from . import resources
3535

3636

3737
Injection = Any
38-
ProviderParent = Union['Provider', Any]
39-
T = TypeVar('T')
40-
TT = TypeVar('TT')
41-
P = TypeVar('P', bound='Provider')
42-
BS = TypeVar('BS', bound='BaseSingleton')
38+
ProviderParent = Union["Provider", Any]
39+
T = TypeVar("T")
40+
TT = TypeVar("TT")
41+
P = TypeVar("P", bound="Provider")
42+
BS = TypeVar("BS", bound="BaseSingleton")
4343

4444

4545
class Provider(Generic[T]):
@@ -230,7 +230,7 @@ class TypedConfigurationOption(Callable[T]):
230230

231231

232232
class Configuration(Object[Any]):
233-
DEFAULT_NAME: str = 'config'
233+
DEFAULT_NAME: str = "config"
234234
def __init__(
235235
self,
236236
name: str = DEFAULT_NAME,

0 commit comments

Comments
 (0)