Victorien
Victorien
Two dots instead of one.
So whenever a `Charge` object is instanciated, the attribute `point` is set: https://github.com/Matheart/manim-physics/blob/70ab45afd8a997f478076fb72457d2c6de158913/src/manim_physics/electromagnetism.py#L16-L40 but this attribute is not updated when using methods such as `move_to` or `shift`: ```py class Sample(Scene):...
Fixes #8330. Made a first mypy_primer run locally, and had a lot of things breaking, so the fix might be incomplete. - [ ] Fix/add tests in `check-classes.test`
Although the dict default value isn't modified, still better to set the default value this way. I also wanted to know if you are interested in https://github.com/mingrammer/diagrams/issues/732, as typings seems...
From [PEP 561](https://peps.python.org/pep-0561/#packaging-type-information): > This marker applies recursively: if a top-level package includes it, all its sub-packages MUST support type checking as well
Fixes https://github.com/tiangolo/fastapi/discussions/9364 It appears that the value list extracted from the `FormData` is not necessarily composed of only `UploadFile` instances. OP said that it was happening when using the Swagger...
Fixes #715 I've made use of `typing-extensions`. I know some people doesn't like to add an extra dependency purely for typing, but `asgiref` (a Django dependency) requires it anyway. I...
Any interest in having typing introduced in the library? Let me know and I'll come with a PR
Following https://github.com/ManimCommunity/manim/pull/3620, would be great to enforce linting on CI. I propose using Ruff instead of flake8, it would avoid having to install a bunch of plugins and `pyproject.toml` configuration...
Fixes #3466. What technically changed: - Use `pydantic` to create a new `ManimConfig` class, providing built-in type hints, validation. This eliminates the need to define properties for each parameter. -...