Skip to content

Commit

Permalink
black formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
jwdevantier committed Jul 6, 2022
1 parent a6db0c9 commit cbe3d95
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions docs/examples/01_intro/my_mathlib.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,21 @@ def mod(x, y):

# <<? common_math_funcs [["add", "+"], ["sub", "-"], ["div", "/"], ["mul", "*"]]
def add(x, y):
return x + y
return x + y


def sub(x, y):
return x - y
return x - y


def div(x, y):
return x / y
return x / y


def mul(x, y):
return x * y
return x * y


# ?>>


Expand Down

0 comments on commit cbe3d95

Please sign in to comment.