MCPcopy Create free account
hub / github.com/Persper/code-analytics / fillout

Function fillout

tools/excel_charts/excel.py:6–11  ·  view source on GitHub ↗
(worksheet, position, data)

Source from the content-addressed store, hash-verified

4
5
6def fillout(worksheet, position, data):
7 row = position[0]
8 column = position[1]
9 for i, array in enumerate(data):
10 for j, value in enumerate(array):
11 worksheet.cell(row=row + i, column=column + j, value=value)
12
13
14def fillin(worksheet, position, num_rows, num_columns):

Callers 1

mainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected