BstLabs / py-dynacli

DynaCLI is a cloud-friendly Python library for converting pure Python functions into Linux Shell commands.
https://bstlabs.github.io/py-dynacli/
MIT License
98 stars 5 forks source link

[FEATURE] Support optional function parameters with: <param>:<type> = None #106

Open yuvaljacob opened 1 year ago

yuvaljacob commented 1 year ago

Is your feature request related to a problem? Please describe. Using the standard Python optional function parameters is cleaner and simpler than using *args or **kwargs

Describe the solution you'd like The solution is being able to use the standard Python optional parameters syntax

Describe alternatives you've considered Current alternatives are available, by using *args or **kwargs