(dic)
| 13 | |
| 14 | |
| 15 | def getify(dic): |
| 16 | st = str() |
| 17 | for K, V in dic.iteritems(): |
| 18 | if type(V) is list: |
| 19 | for v in V: |
| 20 | st += K+'='+v+'&' |
| 21 | else: |
| 22 | st += K+'='+V+'&' |
| 23 | return st.rstrip('&') |
| 24 | |
| 25 | |
| 26 | def get_scatter_chart(pts, x_axis, symbol): |
no outgoing calls
no test coverage detected