mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2025-10-11 22:36:40 +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()
|