aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThéo de la Hogue2024-03-13 09:00:29 +0100
committerThéo de la Hogue2024-03-13 09:00:29 +0100
commite32d6892b178b212ccb0d662f4a2f364d7056019 (patch)
treed784b14923132ee2ba3a6223862954df342a3cb9
parentd55de9adbc507e3de0688b8fcef99fc39d6475cd (diff)
downloadargaze-e32d6892b178b212ccb0d662f4a2f364d7056019.zip
argaze-e32d6892b178b212ccb0d662f4a2f364d7056019.tar.gz
argaze-e32d6892b178b212ccb0d662f4a2f364d7056019.tar.bz2
argaze-e32d6892b178b212ccb0d662f4a2f364d7056019.tar.xz
Fixing ArCamera.map function call.
-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 26d88d4..611aa8b 100644
--- a/src/argaze/DataFeatures.py
+++ b/src/argaze/DataFeatures.py
@@ -758,7 +758,7 @@ def PipelineStepMethod(method):
timestamp: Optional method call timestamp (unit does'nt matter) if first args parameter is not a TimestampedObject instance.
unwrap: Extra arguments used in wrapper function to call wrapped method directly.
"""
- if timestamp is None:
+ if timestamp is None and len(args) > 0:
if isinstance(args[0], TimestampedObject):