Skip to content

Commit 428a8b6

Browse files
committed
Fix missing return
1 parent 03f5936 commit 428a8b6

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

extra/detail/decode_fast_type.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,8 @@ def decode_decimal_fast64(significand, exp, sign):
6262
exp -= 398 # Bias value
6363
result = generate_string(significand, exp, sign)
6464

65+
return result
66+
6567
def decode_decimal_fast128(significand, exp, sign):
6668

6769
high_bits = significand >> 64

0 commit comments

Comments
 (0)