From 8bc251aea24d35e76a3a49b56dfbe020228fbb84 Mon Sep 17 00:00:00 2001 From: Piero Toffanin Date: Sat, 15 Jul 2023 18:39:41 +0200 Subject: [PATCH] Semantic int_values fix --- opendm/photo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opendm/photo.py b/opendm/photo.py index 3e809326..8bd55b34 100644 --- a/opendm/photo.py +++ b/opendm/photo.py @@ -631,7 +631,7 @@ class ODM_Photo: if isinstance(tag.values, list): return [int(v) for v in tag.values] elif isinstance(tag.values, str) and tag.values == '': - return [0] + return [] else: return [int(tag.values)]