Skip to content

Commit

Permalink
Fix rate extract
Browse files Browse the repository at this point in the history
  • Loading branch information
slacrherbst committed Mar 29, 2024
1 parent 6d7a324 commit f0d9753
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tid_ss_lib_v3/project_sheet.py
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ def cost_labor(*, sheet, rowIdx, cData, laborTable):

# Extract key columns
hours = float(sheet.rows[rowIdx].cells[cData['Budgeted Quantity']['position']].value)
rate = sheet.rows[rowIdx].cells[cData['Cost Per Item']['position']].value
rate = float(sheet.rows[rowIdx].cells[cData['Cost Per Item']['position']].value)
startStr = sheet.rows[rowIdx].cells[cData['Start']['position']].value
endStr = sheet.rows[rowIdx].cells[cData['End']['position']].value

Expand Down

0 comments on commit f0d9753

Please sign in to comment.