N. Jourdane

Results 157 issues of N. Jourdane

> Faciliter l’upload des images avec un bouton *Import* sur l’interface d’ajout d’une image, qui ajoute l’image à la galerie *Forum* prévue à cet effet, puis copie le lien dans...

C-Front
S-Évolution

Pour reproduire : - se rendre sur une page de MP ; - sur un autre onglet, se déconnecter puis se reconnecter ; - depuis la page de MP, envoyer...

C-Back
S-Évolution

When I use a logger like this: ```py import logging from behave import given LOGGER = logging.getLogger("behave") @given("that an empty form named '{form_title}' exists") # type: ignore def create_form(_context: Context,...

question

Both Pyright and ty complain produce a "call check" error on given/when/then decorators: - [ty: call-non-callable](https://docs.astral.sh/ty/reference/rules/#call-non-callable) - [pyright: reportCallIssue](https://github.com/microsoft/pyright/blob/main/docs/configuration.md#reportCallIssue) Example code: ```py from behave import given @given("something") #

The [font merge](https://fonttools.readthedocs.io/en/latest/merge.html) tool is useful, but it could be interesting to allow to pass a font objects directly instead of font paths.

### Summary ```python from typing import TypedDict class MyTypedDict1(TypedDict): aaa: int bbb: int class MyTypedDict2(TypedDict): aaa: int bbb: int ccc: int d1: MyTypedDict1 = { "aaa": 1, "bbb": 2, }...

typeddict