Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
AngRodrigues committed Dec 5, 2024
1 parent ed1cc4a commit 844caef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion map2loop/thickness_calculator.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def compute(
return units

def _check_thickness_percentage_calculations(self, thicknesses: pandas.DataFrame):
units_with_no_thickness = len(thicknesses[thicknesses['ThicknessMedian'] == -1])
units_with_no_thickness = len(thicknesses[thicknesses['ThicknessMean'] == -1])
total_units = len(thicknesses)

if total_units > 0 and (units_with_no_thickness / total_units) >= 0.75:
Expand Down

0 comments on commit 844caef

Please sign in to comment.