Skip to content

Commit

Permalink
Fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelmarco committed Oct 29, 2024
1 parent e412430 commit 72c12ac
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/sage/libs/braiding.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -389,6 +389,7 @@ def sliding_circuits(braid):
sig_off()
return rop


def send_to_sss(braid):
r"""
Return an element of the braid's super summit set and the conjugating braid.
Expand Down Expand Up @@ -417,6 +418,7 @@ def send_to_sss(braid):
sig_off()
return rop


def send_to_uss(braid):
r"""
Return an element of the braid's ultra summit set and the conjugating braid.
Expand Down Expand Up @@ -445,6 +447,7 @@ def send_to_uss(braid):
sig_off()
return rop


def send_to_sc(braid):
r"""
Return an element of the braid's sliding circuits and the conjugating braid.
Expand Down Expand Up @@ -474,6 +477,7 @@ def send_to_sc(braid):
sig_off()
return rop


def trajectory(braid):
r"""
Return the braid's trajectory.
Expand Down Expand Up @@ -505,6 +509,7 @@ def trajectory(braid):
sig_off()
return rop


def cyclic_slidings(braid):
r"""
Return the cyclic slidings of the braid.
Expand Down Expand Up @@ -536,4 +541,3 @@ def cyclic_slidings(braid):
cdef list[list[list[list[int]]]] rop = CyclicSlidings(nstrands, l)
sig_off()
return rop

0 comments on commit 72c12ac

Please sign in to comment.