This commit is contained in:
Roman Mogylatov 2020-09-03 23:13:17 -04:00
parent 74df2ed00d
commit f0004c805f
1 changed files with 1 additions and 1 deletions

View File

@ -238,7 +238,7 @@ Concept
- Explicit is better than implicit (PEP20). - Explicit is better than implicit (PEP20).
- Do no magic to your code. - Do no magic to your code.
How does it different from the other frameworks? How is it different from the other frameworks?
- **No autowiring.** The framework does NOT do any autowiring / autoresolving of the dependencies. You need to specify everything explicitly. Because *"Explicit is better than implicit" (PEP20)*. - **No autowiring.** The framework does NOT do any autowiring / autoresolving of the dependencies. You need to specify everything explicitly. Because *"Explicit is better than implicit" (PEP20)*.
- **Does not pollute your code.** Your application does NOT know and does NOT depend on the framework. No ``@inject`` decorators, annotations, patching or any other magic tricks. - **Does not pollute your code.** Your application does NOT know and does NOT depend on the framework. No ``@inject`` decorators, annotations, patching or any other magic tricks.