Skip to content

Commit

Permalink
Double quotation marks correction
Browse files Browse the repository at this point in the history
  • Loading branch information
juraskov committed Mar 27, 2024
1 parent b99b392 commit 5b21e54
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions mlptrain/potentials/ace/ace.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,10 +174,10 @@ def _print_input(self, filename: str, **kwargs) -> None:
print(
'r0 = 1.3\n'
f'r_in = {self._r_in_estimate:.4f}\n' # inner cutoff of ACE, choose a little more than min dist in dataset
f'r_cut = {Config.ace_params['r_cut']}\n' # outer cutoff of ACE
f"r_cut = {Config.ace_params['r_cut']}\n" # outer cutoff of ACE
'\n'
f'deg_pair = {Config.ace_params['deg_pair']}\n' # Specify the pair potential
f'r_cut_pair = {Config.ace_params['r_cut_pair']}\n',
f"deg_pair = {Config.ace_params['deg_pair']}\n" # Specify the pair potential
f"r_cut_pair = {Config.ace_params['r_cut_pair']}\n",
file=inp_file,
)

Expand Down

0 comments on commit 5b21e54

Please sign in to comment.