Adrian
Adrian
Would you consider exempting F401 from RUF100 until this is solved? Even if ruff cannot handle this correctly, it'd be much cleaner if as a developer one could still add...
@miguelgrinberg: Your comment is a bit old, but I think the proper solution for that problem is to simply drop support for Flask
That would sacrify all the nice things `click` provides. Also, one would need to write a tool that converts for argparse-style command/argument definitions to use the click API. Probably not...
@rlam3: Flask-Migrate already registers a click subcommand (`flask db`) via its setup.py. There shouldn't be any need for a separate package. https://github.com/miguelgrinberg/Flask-Migrate/commit/8c208b54837ccbf65eee8d95fc623057e2753b4e
Oh, I didn't mean mobile. I meant e.g. between home and work desktop or desktop and laptop.
How about an `uv pip compile --auto` that looks for `requirements*.{in,txt}`, checks if there are dependencies between them (e.g. `-c requirements.txt` in a `requirements.something.in`), and then compiles them in the...
A bugfix release would be HIGHLY appreciated! :)
changelog pls :)
I haven't really looked at the code in-depth yet, but can't we just call a function that saves the state in local storage when changing the state? Something like this:...
a useEffect with an empty dependency list (since you'd only want to run this a single time) feels cleaner than very complex useEffect functions