Subject: | Multiple attributes in Python classes |
Hello,
AutoDia does not seem to handle multiple attribute creation in classes,
like in the following,
class SellmeierLaw(DispersionLaw):
"""Sellmeier dispersion law equation."""
A, B, lbda0 = None, None, None # Sellmeier coefficients
def __init__(self, coeff=(1.0, 1.0, 300e-9)): ...
AutoDia only creates attribute "A", but not "B" nor "lbda0".