rq / django-rq

A simple app that provides django integration for RQ (Redis Queue)
MIT License
1.81k stars 282 forks source link

get_worker: replace special kwargs with separate parameters #659

Closed SpecLad closed 2 months ago

SpecLad commented 3 months ago

This communicates more information to IDEs and type checkers, making the function easier to use.

Having regular parameters after *args has been possible since Python 3.0.

selwin commented 2 months ago

Thanks!