Skip to content

Commit ef1cab7

Browse files
committed
black
1 parent 7ecb533 commit ef1cab7

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

unification/match.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -114,8 +114,5 @@ def ordering(signatures):
114114
Topological sort of edges as given by ``edge`` and ``supercedes``
115115
"""
116116
return _toposort(
117-
{
118-
s: [t for t in signatures if edge(s, t)]
119-
for s in map(tuple, signatures)
120-
}
117+
{s: [t for t in signatures if edge(s, t)] for s in map(tuple, signatures)}
121118
)

0 commit comments

Comments
 (0)