Skip to content

Commit

Permalink
Merge pull request #5 from asfadmin/sg/different-fork
Browse files Browse the repository at this point in the history
feat: added multiplication
  • Loading branch information
segallagher authored Jun 13, 2024
2 parents 563da4c + 0861124 commit 126e960
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 4 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/format-libraries.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,6 @@ jobs:
needs: check-message
runs-on: ubuntu-latest
steps:
- name: debug
id: debug
run: echo Continue is ${{ needs.check-message.outputs.continue }}

- name: Checkout Code
if: needs.check-message.outputs.continue == 'true'
id: checkout
Expand Down
19 changes: 19 additions & 0 deletions flowblock_source_files/math/multiply.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
"""
name: "Multiply"
inputs:
a:
type: Number
default: 0
user_input: True
b:
type: Number
default: 0
user_input: True
outputs:
sum:
type: Number
description: "Returns the product of a and b"
"""

def main(a, b):
return a * b

0 comments on commit 126e960

Please sign in to comment.