Open
Conversation
demonfire21
reviewed
Feb 13, 2026
demonfire21
reviewed
Feb 13, 2026
| "id": "61a091d8", | ||
| "metadata": {}, | ||
| "source": [ | ||
| "It may seem slick, yet 1) it is static and forms 2) a string of calls which are 3) functional but verbose in a way. Is there an option to reduce this chain of invocations to just one call? In short, yes and decorator patter aims for it. Examples go first and attention to the specially designed functions with a similar structure:\n", |
There was a problem hiding this comment.
- It may seem slick,
The word 'slick' is more typical of commercials and marketing rather than technical descriptions, so I'd use 'elegant/convenient/concise', for example
- decorator patter aims for it
A typo, I guess: pattern, and I'd also use an article here: the pattern
- Examples go first and attention to the specially designed functions with a similar structure:\n
This sentence looks weird (and, perhaps, you wrote it like this intentionally, but it's really unnatural). I'd say someting like 'Let’s start with some examples, paying special attention to the specially designed functions with a similar structure.'
Owner
Author
There was a problem hiding this comment.
Rewritten, to be pushed soon.
demonfire21
reviewed
Feb 13, 2026
demonfire21
reviewed
Feb 13, 2026
demonfire21
reviewed
Feb 13, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Decorator pattern in Python - behold the ease and power of it.