mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2025-03-04 15:20:39 +01:00

This is just a more concise/pythonic way of doing function arguments. Since Process/start_process have basically the same argument names we can simplify and use **kwargs which will pass the named arguments directly to Process(). This also allows us to add arguments to Process without touching start_process if we need.