diff options
author | Théo de la Hogue | 2024-03-13 09:00:29 +0100 |
---|---|---|
committer | Théo de la Hogue | 2024-03-13 09:00:29 +0100 |
commit | e32d6892b178b212ccb0d662f4a2f364d7056019 (patch) | |
tree | d784b14923132ee2ba3a6223862954df342a3cb9 /src | |
parent | d55de9adbc507e3de0688b8fcef99fc39d6475cd (diff) | |
download | argaze-e32d6892b178b212ccb0d662f4a2f364d7056019.zip argaze-e32d6892b178b212ccb0d662f4a2f364d7056019.tar.gz argaze-e32d6892b178b212ccb0d662f4a2f364d7056019.tar.bz2 argaze-e32d6892b178b212ccb0d662f4a2f364d7056019.tar.xz |
Fixing ArCamera.map function call.
Diffstat (limited to 'src')
-rw-r--r-- | src/argaze/DataFeatures.py | 2 |
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): |