danielritchie's picture
init
9191c48
raw
history blame contribute delete
127 Bytes
def apply_drama(raw, target, drama):
return {
k: raw[k] + drama * (target[k] - raw[k])
for k in raw
}