-
Notifications
You must be signed in to change notification settings - Fork 453
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Timer Trigger arg_name cannot use snake case #9917
Comments
Thanks for reporting will check and update.Thanks |
Hi @williamhbell pls have a look this is not supported.Azure/azure-functions-python-worker#1174 |
@bhagyshricompany thanks for spotting Azure/azure-functions-python-worker#1174. It appears to be the same bug. As mentioned in Azure/azure-functions-python-worker#1174, snake case is normally used for Python variables following PEP8 https://peps.python.org/pep-0008/#function-and-variable-names . |
yes but right now not have support. |
the validation is done in azure functions host at
|
Transferring to Azure Function Host to continue the discussion |
Investigative information
Repro steps
Provide the steps required to reproduce the problem:
to
Expected behaviour
It should be possible to use a binding name that uses snake case, since this is the normal convention for Python programs.
Actual behaviour
Known workarounds
Remove the
_
character from the binding and variable name.Contents of the requirements.txt file:
The text was updated successfully, but these errors were encountered: