mirror of
https://github.com/johndoe6345789/AutoMetabuilder.git
synced 2026-04-30 00:34:58 +00:00
9 lines
194 B
Python
9 lines
194 B
Python
"""Workflow plugin: power operation."""
|
|
|
|
|
|
def run(_runtime, inputs):
|
|
"""Calculate a to the power of b."""
|
|
a = inputs.get("a", 0)
|
|
b = inputs.get("b", 1)
|
|
return {"result": a ** b}
|