We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ab4e62 commit 161203eCopy full SHA for 161203e
1 file changed
src/example_fgen_basic/get_square_root.py
@@ -56,7 +56,7 @@ def get_square_root(inv: float) -> float:
56
if result.data_v is None:
57
raise AssertionError
58
59
- res = result.data_v
+ res: float = float(result.data_v)
60
61
# TODO: think
62
# I like the clarity of finalising result_instance_index here
0 commit comments