Skip to content
Snippets Groups Projects
Commit 45e684e7 authored by Florent Lamiraux's avatar Florent Lamiraux Committed by Florent Lamiraux florent@laas.fr
Browse files

Allow iterable instead of only tuple in signal value affectation.

parent 22ce1edb
No related branches found
No related tags found
No related merge requests found
...@@ -6,6 +6,7 @@ ...@@ -6,6 +6,7 @@
import wrap import wrap
import entity import entity
import re import re
import collections
def stringToTuple (vector) : def stringToTuple (vector) :
""" """
...@@ -100,12 +101,12 @@ def objectToString(obj) : ...@@ -100,12 +101,12 @@ def objectToString(obj) :
- an integer, - an integer,
- a boolean, - a boolean,
""" """
if (isinstance(obj, tuple)) : if (isinstance(obj, collections.Iterable)) :
# matrix or vector # matrix or vector
if len(obj) is 0 : if len(obj) is 0 :
return "" return ""
else : else :
if (isinstance(obj[0], tuple)) : if (isinstance(obj[0], collections.Iterable)) :
#matrix #matrix
return matrixToString(obj) return matrixToString(obj)
else : else :
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment