Skip to content

Commit

Permalink
Format files with black
Browse files Browse the repository at this point in the history
  • Loading branch information
PyGamer0 authored and actions-user committed May 17, 2022
1 parent 15aff1c commit 041c3a9
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions flax/builtins.py
Original file line number Diff line number Diff line change
Expand Up @@ -515,7 +515,9 @@
"˝": attrdict(
condition=lambda links: links and links[0].arity,
qlink=lambda links, outermost_links, i: [
attrdict(arity=2, call=lambda w, x: fold(links, w, x, initial=True, right=True))
attrdict(
arity=2, call=lambda w, x: fold(links, w, x, initial=True, right=True)
)
],
),
"ˢ": attrdict(
Expand Down Expand Up @@ -632,9 +634,7 @@
"ᵟ˝": attrdict(
condition=lambda links: links and links[0].arity,
qlink=lambda links, outermost_links, i: [
attrdict(
arity=2, call=lambda w, x: fold(links, w, x, initial=True)
)
attrdict(arity=2, call=lambda w, x: fold(links, w, x, initial=True))
],
),
"ᵟᵂ": attrdict(
Expand Down Expand Up @@ -671,9 +671,7 @@
"ᵟ‶": attrdict(
condition=lambda links: links and links[0].arity,
qlink=lambda links, outermost_links, i: [
attrdict(
arity=2, call=lambda w, x: scan(links, w, x, initial=True)
)
attrdict(arity=2, call=lambda w, x: scan(links, w, x, initial=True))
],
),
"ᵟⁿ": attrdict(
Expand Down Expand Up @@ -724,7 +722,9 @@
"‶": attrdict(
condition=lambda links: links and links[0].arity,
qlink=lambda links, outermost_links, i: [
attrdict(arity=2, call=lambda w, x: scan(links, w, x, initial=True, right=True))
attrdict(
arity=2, call=lambda w, x: scan(links, w, x, initial=True, right=True)
)
],
),
"⁰": attrdict(
Expand Down

0 comments on commit 041c3a9

Please sign in to comment.