Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
litman90 committed Mar 5, 2024
1 parent f856e64 commit 21d4307
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/py/pes/harmonic.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def check_arguments(self):
self.k = float(self.args[0])
self.type = "isotropic"
elif len(self.args) == 3:
self.k = np.asarray(list(map(float,self.args)))
self.k = np.asarray(list(map(float, self.args)))
self.type = "non-isotropic"
else:
sys.exit(self.error_msg)
Expand Down

0 comments on commit 21d4307

Please sign in to comment.