add comment
This commit is contained in:
parent
3b47a8a5eb
commit
fa4b3396b6
2
glue.py
2
glue.py
@ -1,4 +1,4 @@
|
|||||||
def glue(*args, **kwargs):
|
def glue(*args, **kwargs):
|
||||||
what_to_glue = list(args)
|
what_to_glue = list(args)
|
||||||
what_to_glue.extend([v for k,v in kwargs.iteritems()])
|
what_to_glue.extend([v for k,v in kwargs.iteritems()]) # Ignore all your keys, because you're doing this wrong anyway
|
||||||
return " ".join(what_to_glue)
|
return " ".join(what_to_glue)
|
||||||
|
Loading…
Reference in New Issue
Block a user