Skip to content

Commit fc9a7b3

Browse files
remove addressed FIXME
1 parent 2a12a16 commit fc9a7b3

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/geophires_x_client/geophires_x_result.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
import csv
44
import json
5+
import math
56
import re
67
from io import StringIO
78
from pathlib import Path
@@ -756,12 +757,8 @@ def _get_sam_cash_flow_profile_lines():
756757
entry_val = int(float(entry_val))
757758

758759
if is_float(entry_val):
759-
# FIXME WIP
760-
import math
761-
762760
entry_val_float = float(entry_val)
763761
if math.isnan(entry_val_float):
764-
# entry_val = 'NaN' # FIXME WIP
765762
entry_val = math.nan
766763
else:
767764
entry_val = entry_val_float

0 commit comments

Comments
 (0)