MCPcopy Create free account
hub / github.com/scanny/python-pptx / insert_adjustment_values

Function insert_adjustment_values

spec/gen_spec/gen_spec.py:165–174  ·  view source on GitHub ↗

insert adjustment values into their table

(c)

Source from the content-addressed store, hash-verified

163
164
165def insert_adjustment_values(c):
166 """insert adjustment values into their table"""
167 adjustment_values = load_adjustment_values()
168 # insert into table ------------------------------------
169 q_insert = (
170 'INSERT INTO adjustment_values\n'
171 ' (prst, seq_nmbr, name, val)\n'
172 ' VALUES (?, ?, ?, ?)\n'
173 )
174 c.executemany(q_insert, adjustment_values)
175
176
177def load_adjustment_values():

Callers

nothing calls this directly

Calls 1

load_adjustment_valuesFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…