Skip to content

Commit

Permalink
doc: add file-scope docstrings to dissipation module
Browse files Browse the repository at this point in the history
  • Loading branch information
sy-cui committed Oct 10, 2024
1 parent 90f3a72 commit b6d748a
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions elastica/dissipation/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
__doc__ = """
(added in version 0.3.0)
(added in version 0.3.3)
Built in damper module implementations
Built-in damper module implementations
"""

from .damper_base import DamperBase
Expand Down
1 change: 1 addition & 0 deletions elastica/dissipation/analytical_linear_damper.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
__doc__ = """Analytical linear damper implementation"""
import logging
from typing import Any, Callable, TypeAlias

Expand Down
1 change: 1 addition & 0 deletions elastica/dissipation/damper_base.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
__doc__ = """Abstract base class for all damper/dissipation modules"""
from abc import ABC, abstractmethod
from typing import Any, Generic, TypeVar
import numpy as np
Expand Down
1 change: 1 addition & 0 deletions elastica/dissipation/laplacian_dissipation_filter.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
__doc__ = """Laplacian dissipation filter implementation"""
from typing import Any

import numpy as np
Expand Down

0 comments on commit b6d748a

Please sign in to comment.