We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2deaad0 commit 40ef29bCopy full SHA for 40ef29b
azure_functions_worker/dispatcher.py
@@ -688,7 +688,8 @@ def index_functions(self, function_path: str):
688
# break this loop down
689
bindings_info = []
690
for binding in func.get_bindings():
691
- deferred_binding_info = bindings_logs.get(binding.name) if bindings_logs.get(binding.name) else ""
+ deferred_binding_info = bindings_logs.get(binding.name)\
692
+ if bindings_logs.get(binding.name) else ""
693
bindings_info.append((binding.type, binding.name,
694
deferred_binding_info))
695
0 commit comments