Skip to content

Commit

Permalink
pep8 fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
yardasol committed Jul 26, 2022
1 parent b62f7bc commit f9c3a2f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion saltproc/process.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,9 @@ def process_material(self, inflow):

waste_nucvec[nuc] = \
float(inflow[nuc]) * self.efficiency[nuc_name]
else: # Assume zero removal

# Assume zero removal
else:
thru_nucvec[nuc] = float(inflow.comp[nuc])
waste_nucvec[nuc] = 0.0

Expand Down

0 comments on commit f9c3a2f

Please sign in to comment.