File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/firebase_functions/private Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -324,7 +324,7 @@ def before_operation_handler(
324
324
auth_response : BeforeCreateResponse | BeforeSignInResponse | None = func (
325
325
event )
326
326
if not auth_response :
327
- return _jsonify (result = {})
327
+ return _jsonify ({})
328
328
auth_response_dict = _validate_auth_response (event_type , auth_response )
329
329
update_mask = "," .join (auth_response_dict .keys ())
330
330
result = {
@@ -333,7 +333,7 @@ def before_operation_handler(
333
333
"updateMask" : update_mask ,
334
334
}
335
335
}
336
- return _jsonify (result = result )
336
+ return _jsonify (result )
337
337
# Disable broad exceptions lint since we want to handle all exceptions.
338
338
# pylint: disable=broad-except
339
339
except Exception as exception :
You can’t perform that action at this time.
0 commit comments