aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThéo de la Hogue2024-03-12 18:09:28 +0100
committerThéo de la Hogue2024-03-12 18:09:28 +0100
commitd55de9adbc507e3de0688b8fcef99fc39d6475cd (patch)
tree5de65c75baca899489f57bb3bc7eb3c28903d4fe
parent6adef13382ffec5cb22bbe9ce38d48380578a1f1 (diff)
downloadargaze-d55de9adbc507e3de0688b8fcef99fc39d6475cd.zip
argaze-d55de9adbc507e3de0688b8fcef99fc39d6475cd.tar.gz
argaze-d55de9adbc507e3de0688b8fcef99fc39d6475cd.tar.bz2
argaze-d55de9adbc507e3de0688b8fcef99fc39d6475cd.tar.xz
Downcasing letter in type name string.
-rw-r--r--src/argaze/DataFeatures.py2
1 files changed, 1 insertions, 1 deletions
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")