Skip to content

Commit

Permalink
"bug fixing, code cleaning and quality-of-life stuff"
Browse files Browse the repository at this point in the history
  • Loading branch information
MABeeskow committed Jun 25, 2024
1 parent b5a5702 commit 4ede33d
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 5 additions & 3 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 6 additions & 2 deletions pysills/pysills_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -5172,8 +5172,12 @@ def ma_export_calculation_report(self):

# Limit of Detection
value_i = self.container_lod[var_filetype][var_datatype][file_short]["MAT"][isotope]
report_lod[var_filetype][var_datatype][file_short][isotope] = round(
value_i, n_decimals_concentration)

if value_i != None:
report_lod[var_filetype][var_datatype][file_short][isotope] = round(
value_i, n_decimals_concentration)
else:
report_intensity[var_filetype][var_datatype][file_short][isotope] = "---"

## Intensity Results
# Intensity
Expand Down

0 comments on commit 4ede33d

Please sign in to comment.