Skip to content

Commit

Permalink
fix: linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
lachlangrose authored and rabii-chaarani committed Aug 1, 2024
1 parent 31068c1 commit b743de4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ def test_compute(
assert (
'ThicknessStdDev' in result.columns
), 'Thickness std not being calculated in InterpolatedStructure calculator'
assert result['ThicknessStdDev'].dtypes == float, 'ThicknessStdDev column is not float'
assert result['ThicknessStdDev'].dtypes is float, 'ThicknessStdDev column is not float'

# check for nas in thickness
assert result['ThicknessMedian'].isna().sum() == 0, 'ThicknessMedian column has NaNs'

0 comments on commit b743de4

Please sign in to comment.