v2.14.1 (#756)
Co-authored-by: Clément Drouin <clement.drouin@mistral.ai> Co-authored-by: Gauthier Guinet <43207538+Gguinet@users.noreply.github.com> Co-authored-by: Michel Thomazo <51709227+michelTho@users.noreply.github.com> Co-authored-by: Pierre Rossinès <pierre.rossines@mistral.ai> Co-authored-by: Stanislas <stanislas.lange@mistral.ai> Co-authored-by: Mistral Vibe <vibe@mistral.ai>
This commit is contained in:
parent
3f8487f761
commit
702d0f412e
51 changed files with 2446 additions and 502 deletions
|
|
@ -33,7 +33,7 @@ Always go through `uv` — never invoke bare `python` or `pip`.
|
|||
- Use f-strings, comprehensions, and context managers; follow PEP 8.
|
||||
- Enums: `StrEnum` / `IntEnum` with `auto()` and UPPERCASE members. For type-mixing, the mix-in type comes before `Enum` in the bases. Add methods or `@property` rather than parallel lookup tables.
|
||||
- Write declarative, minimalist code: express intent, drop boilerplate.
|
||||
- Never call a private method from outside of it's class
|
||||
- Never call a private method from outside of its class in production code. Accessing private methods in tests is acceptable.
|
||||
- Avoid comments and docstrings, except for when there's a hard to spot corner case
|
||||
|
||||
## Typing & imports
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue