📝 Update DocInfo to not be a dataclass, Jelle's feedback, avoid bootstrapping problems, make it hashable

This commit is contained in:
Sebastián Ramírez 2023-08-28 16:10:18 +02:00
parent c1616eb92f
commit e3360367f7
1 changed files with 2 additions and 5 deletions

View File

@ -89,12 +89,9 @@ def create_user(
The return of the `doc()` function is an instance of a class that can be checked and used at runtime, defined as: The return of the `doc()` function is an instance of a class that can be checked and used at runtime, defined as:
```Python ```Python
from dataclasses import dataclass
@dataclass
class DocInfo: class DocInfo:
documentation: str def __init__(self, documentation: str):
self.documentation = documentation
``` ```
where the attribute `documentation` contains the same value string passed to the function `doc()`. where the attribute `documentation` contains the same value string passed to the function `doc()`.