Skip to content

Commit

Permalink
Fix pre-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilippRue committed Oct 30, 2023
1 parent 0b383f3 commit 40aefe2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions aiida_kkr/workflows/imp_BdG.py
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ def imp_pot_calc(self):
else:
builder.options = self.inputs.options
if 'initial_noco_angles' in self.inputs.imp_scf:
builder.scf.initial_noco_angles = self.inputs.imp_scf.initial_noco_angles
builder.scf.initial_noco_angles = self.inputs.imp_scf.initial_noco_angles # pylint: disable=no-member

if 'gf_writeout' in self.inputs.imp_scf:
if 'options' in self.inputs.imp_scf.gf_writeout:
Expand Down Expand Up @@ -330,7 +330,7 @@ def imp_BdG_calc(self):
if 'kkr' in self.inputs:
builder.gf_writeout.kkr = builder.kkr # pylint: disable=no-member
if 'initial_noco_angles' in self.inputs.BdG_scf:
builder.scf.initial_noco_angles = self.inputs.BdG_scf.initial_noco_angles
builder.scf.initial_noco_angles = self.inputs.BdG_scf.initial_noco_angles # pylint: disable=no-member

builder.remote_data_host = self.inputs.BdG_scf.remote_data_host

Expand Down

0 comments on commit 40aefe2

Please sign in to comment.