So, you can just create a variable to store the value in...
var result = get_tree().reload_current_scene()
However, then Godot will complain that you have a local variable declared that's not used. To mitigate that, prefix the variable name with an underscore. So, the final solution is this:
var _result = get_tree().reload_current_scene()