ITMO-NSS-team / EPDE

EPDE - partial differential equations discovery framework
Other
59 stars 3 forks source link

docstring of class #16

Open ShvarcbergJull opened 1 year ago

ShvarcbergJull commented 1 year ago

оформить docstring к классам в следующем виде:

    """
    A class to represent a person.

    ...

    Attributes
    ----------
    name : str
        first name of the person
    surname : str
        family name of the person
    age : int
        age of the person

    Methods
    -------
    info(additional=""):
        Prints the person's name and age.
    """