From d55de9adbc507e3de0688b8fcef99fc39d6475cd Mon Sep 17 00:00:00 2001 From: Théo de la Hogue Date: Tue, 12 Mar 2024 18:09:28 +0100 Subject: Downcasing letter in type name string. --- src/argaze/DataFeatures.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/argaze/DataFeatures.py b/src/argaze/DataFeatures.py index f336411..26d88d4 100644 --- a/src/argaze/DataFeatures.py +++ b/src/argaze/DataFeatures.py @@ -25,7 +25,7 @@ import matplotlib.pyplot as mpyplot import matplotlib.patches as mpatches from colorama import Style, Fore -TimestampType = TypeVar('TimeStamp', int, float) +TimestampType = TypeVar('Timestamp', int, float) """Type definition for timestamp as integer or float value.""" TimestampedObjectType = TypeVar('TimestampedObject', bound="TimestampedObject") -- cgit v1.1