diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/argaze/GazeFeatures.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/argaze/GazeFeatures.py b/src/argaze/GazeFeatures.py index 67e5822..224e2d9 100644 --- a/src/argaze/GazeFeatures.py +++ b/src/argaze/GazeFeatures.py @@ -590,7 +590,11 @@ ScanPathType = TypeVar('ScanPathType', bound="ScanPathType") # Type definition for type annotation convenience class ScanPath(list): - """List of scan steps.""" + """List of scan steps. + + Parameters: + duration_max: duration from which older scan steps are removed each time new scan steps are added. 0 means no maximal duration. + """ def __init__(self, duration_max: int|float = 0): |