Skip to content

Commit

Permalink
Version 0.13.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
sobolevn committed Feb 2, 2020
1 parent 285b28f commit 4adba40
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -438,5 +438,6 @@ Or read these articles:

- [Python exceptions considered an anti-pattern](https://sobolevn.me/2019/02/python-exceptions-considered-an-antipattern)
- [Enforcing Single Responsibility Principle in Python](https://sobolevn.me/2019/03/enforcing-srp)
- [Typed functional Dependency Injection in Python](https://sobolevn.me/2020/02/typed-functional-dependency-injection)

Do you have an article to submit? Feel free to open a pull request!
2 changes: 1 addition & 1 deletion docs/pages/context.rst
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ Let's see the final result:
def calculate_points(word: str) -> RequiresContext[_Deps, int]:
def factory(deps: _Deps) -> RequiresContext[_Deps, int]:
guessed_letters_count = len([
letter for letter in word if letter != deps.UNGUESSED_CHAR
letter for letter in word if letter != deps.UNGUESSED_CHAR
])
return _award_points_for_letters(guessed_letters_count)
Expand Down

0 comments on commit 4adba40

Please sign in to comment.