mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-22 17:47:02 +03:00
7 lines
171 B
Python
7 lines
171 B
Python
|
from dependency_injector import providers
|
||
|
|
||
|
|
||
|
# Test 1: to check the return type
|
||
|
provider1 = providers.Delegate(providers.Provider())
|
||
|
var1: providers.Provider = provider1()
|