Skip to content

Commit

Permalink
Drop semicolon
Browse files Browse the repository at this point in the history
Co-authored-by: Gonzalo Tornaría <tornaria@cmat.edu.uy>
  • Loading branch information
antonio-rojas and tornaria authored Apr 14, 2024
1 parent a9c5a50 commit 8f10ebc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sage/interfaces/singular.py
Original file line number Diff line number Diff line change
Expand Up @@ -1409,7 +1409,7 @@ def _repr_(self):
# this is our cue that singular uses `rp` instead of `ip`
if singular_name_mapping['invlex'] == 'rp' and 'doctest' in str(get_display_manager()):
s = re.sub('^(// .*block.* : ordering )rp$', '\\1ip',
s, 0, re.MULTILINE);
s, 0, re.MULTILINE)
return s

def __copy__(self):
Expand Down

0 comments on commit 8f10ebc

Please sign in to comment.