From f79ae179542f16e99811503ec0b132bebc5d9f5c Mon Sep 17 00:00:00 2001 From: Théo de la Hogue Date: Mon, 11 Mar 2024 09:09:08 +0100 Subject: Updating comments. --- src/argaze/GazeAnalysis/VelocityThresholdIdentification.py | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'src') diff --git a/src/argaze/GazeAnalysis/VelocityThresholdIdentification.py b/src/argaze/GazeAnalysis/VelocityThresholdIdentification.py index a95905f..fef1fbd 100644 --- a/src/argaze/GazeAnalysis/VelocityThresholdIdentification.py +++ b/src/argaze/GazeAnalysis/VelocityThresholdIdentification.py @@ -8,7 +8,6 @@ __copyright__ = "Copyright 2023, Ecole Nationale de l'Aviation Civile (ENAC)" __license__ = "BSD" from typing import TypeVar, Tuple -from dataclasses import dataclass, field import math from argaze import GazeFeatures, DataFeatures @@ -227,7 +226,7 @@ class GazeMovementIdentifier(GazeFeatures.GazeMovementIdentifier): # Output last saccade return last_saccade if not terminate else self.current_fixation.finish() - # Always return unvalid gaze movement at least + # Always return empty gaze movement at least return GazeFeatures.GazeMovement() @property @@ -244,7 +243,7 @@ class GazeMovementIdentifier(GazeFeatures.GazeMovementIdentifier): return Saccade(self.__saccade_positions) - # Always return unvalid gaze movement at least + # Always return empty gaze movement at least return GazeFeatures.GazeMovement() @property @@ -254,7 +253,7 @@ class GazeMovementIdentifier(GazeFeatures.GazeMovementIdentifier): return Fixation(self.__fixation_positions) - # Always return unvalid gaze movement at least + # Always return empty gaze movement at least return GazeFeatures.GazeMovement() @property @@ -264,5 +263,5 @@ class GazeMovementIdentifier(GazeFeatures.GazeMovementIdentifier): return Saccade(self.__saccade_positions) - # Always return unvalid gaze movement at least + # Always return empty gaze movement at least return GazeFeatures.GazeMovement() -- cgit v1.1