Skip to content

Commit

Permalink
fix pylint error
Browse files Browse the repository at this point in the history
  • Loading branch information
AndresOrtegaGuerrero committed Nov 20, 2024
1 parent 88214e6 commit d4057cc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/aiida_quantumespresso/workflows/pdos.py
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,9 @@ def run_nscf(self):
inputs.pw.parameters['SYSTEM']['nbnd'] = nbnd

else:
inputs.pw.parameters['SYSTEM']['nbnd'] = self.ctx.workchain_scf.outputs.output_parameters['number_of_bands']
inputs.pw.parameters['SYSTEM']['nbnd'] = (
self.ctx.workchain_scf.outputs.output_parameters['number_of_bands']
)
inputs.pw.structure = self.inputs.structure

inputs.metadata.call_link_label = 'nscf'
Expand Down

0 comments on commit d4057cc

Please sign in to comment.