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 45e16bc commit c96f269Copy full SHA for c96f269
azure/functions/decorators/function_app.py
@@ -100,8 +100,8 @@ def get_bindings(self) -> List[Binding]:
100
return self._bindings
101
102
def get_raw_bindings(self) -> List[str]:
103
- return [json.dumps(i, cls=StringifyEnumJsonEncoder) for i in
104
- self.get_bindings_dict()["bindings"]]
+ return [json.dumps(b.get_dict_repr(), cls=StringifyEnumJsonEncoder)
+ for b in self._bindings]
105
106
def get_bindings_dict(self) -> Dict:
107
"""Get dictionary representation of the bindings of the function.
0 commit comments