lanl / hippynn

python library for atomistic machine learning
https://lanl.github.io/hippynn/
Other
59 stars 22 forks source link

Fixed missing parenthesis. #7

Closed sakibmatin closed 1 year ago

sakibmatin commented 2 years ago

Fix Missing parenthesis in EwaldRealSpaceScreening(AlphaScreening) and WolfScreening(AlphaScreening) in super/base class AlphaScreening initialization.

super.init(alpha) --> super().init(alpha)

Example of Issue

ES = EwaldRealSpaceScreening(alpha=1.0)

TypeError: descriptor 'init' requires a 'super' object but received a 'float'