(values, keys)
| 106 | Zcgi.print_html(html) |
| 107 | |
| 108 | def unpack(values, keys): |
| 109 | unpacked = [] |
| 110 | for key in keys: |
| 111 | unpacked.append(values[key]) |
| 112 | return unpacked |
| 113 | |
| 114 | def check_week(dictionary, keys): |
| 115 | for key in keys: |
no test coverage detected