X-Git-Url: https://git.llucax.com/software/pymin.git/blobdiff_plain/72406621d84a39c402cbdb36224c880daef1d087..70ec9c970b451ee166087a3327a6b906a4777500:/seqtools.py diff --git a/seqtools.py b/seqtools.py index 13e6eac..d3de929 100644 --- a/seqtools.py +++ b/seqtools.py @@ -92,6 +92,8 @@ def as_table(obj): if hasattr(i, '__iter__'): return obj return (obj,) + else: + return ((),) # empty table if __name__ == '__main__': @@ -128,3 +130,5 @@ if __name__ == '__main__': print f(dict(a=1, b=2)) + print f([]) +