Santiago Gandolfo
Santiago Gandolfo
How would be the recommended way to list all the files in a directory and then delete them. Using python os you can do it this way: ```python def clear_directory(self,...
I'm trying to update my code to Odmantic 1.0.0, Pydantic 2.5.2 and also start using Python 3.11, but when I define one of my classes like this: ```python from typing...
# Bug I'm getting a `pymongo.errors.OperationFailure: $geoNear, $near, and $nearSphere are not allowed in this context` error when trying to find using the [$near](https://www.mongodb.com/docs/manual/reference/operator/query/near/#mongodb-query-op.-near) operator. ### Current Behavior If I...
Currently when we run `dramatiq --help`, the help information for --processes says: `the number of worker processes to run (default: %s)`, where %s varies for the number of CPUs in...
Following the steps of PR #587 we should remove all reference that indicates that Dramatiq supports python 3.7
Currently, the repo uses isort, flake8, flake8-bugbear and flake8-quotes. All of these tools can be replaced by ruff, which not only has even more tools included but also executes linting...
It would be nice for rye to automatically install pre-commit hooks on init, and to also maybe create a `.pre-commit-config.yaml` on new projects. This would help simplify project setup and...
In my case I forked the project and replaced Prettier and Eslint with Biome. This change also allowed me to run linting and formating in the frontend pre-commit hooks with...
I had to modify the `modify-openapi-operationids.js` script because biome was giving me a lint error because of the use of `forEach` instead of `for...of` I also disabled some other rules...
Is there a way to add something like [this](https://fastapi.tiangolo.com/tutorial/path-params/#order-matters) in the docs? One of my team mates was faced with this problem and couldn't understand why when making a request...