travis_commit

This commit is contained in:
Rohit Tanwar
2018-01-17 09:50:48 +00:00
parent 4655b9cc8d
commit 36acda471c
2 changed files with 2 additions and 108 deletions

View File

@ -20,6 +20,7 @@ def spread(arg):
result = []
result.extend(spread(list(map(lambda x : deep(x) if type(x) == list else x,arr))))
return result
```
```python