You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I suggest that we move to using Google style docstrings rather than Numpy style. The Google formatted strings are usually multiple lines shorter, and work more nicely with type hints.
Example Google docstring (proposed):
defelement(family: str, cell: str, degree: int) ->FiniteElement:
""""Create a finite element. Args: family: The element family cell: The cell degree: The polynomial degree """
Example Numpy docstring:
defelement(family: str, cell: str, degree: int) ->FiniteElement:
""""Create a finite element. Parameters ----------- family: str The element family cell: str The cell degree: int The polynomial degree """
The text was updated successfully, but these errors were encountered:
I suggest that we move to using Google style docstrings rather than Numpy style. The Google formatted strings are usually multiple lines shorter, and work more nicely with type hints.
Example Google docstring (proposed):
Example Numpy docstring:
The text was updated successfully, but these errors were encountered: