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 2a12a16 commit fc9a7b3Copy full SHA for fc9a7b3
src/geophires_x_client/geophires_x_result.py
@@ -2,6 +2,7 @@
2
3
import csv
4
import json
5
+import math
6
import re
7
from io import StringIO
8
from pathlib import Path
@@ -756,12 +757,8 @@ def _get_sam_cash_flow_profile_lines():
756
757
entry_val = int(float(entry_val))
758
759
if is_float(entry_val):
- # FIXME WIP
760
- import math
761
-
762
entry_val_float = float(entry_val)
763
if math.isnan(entry_val_float):
764
- # entry_val = 'NaN' # FIXME WIP
765
entry_val = math.nan
766
else:
767
entry_val = entry_val_float
0 commit comments