Skip to content

Commit d192614

Browse files
author
Release Manager
committed
gh-37932: fix the linter just fixing the linter ### 📝 Checklist <!-- Put an `x` in all the boxes that apply. --> - [ ] The title is concise and informative. - [ ] The description explains in detail what this PR is about. - [ ] I have linked a relevant issue or discussion. - [ ] I have created tests covering the changes. - [ ] I have updated the documentation and checked the documentation preview. ### ⌛ Dependencies <!-- List all open PRs that this PR logically depends on. For example, --> <!-- - #12345: short description why this is a dependency --> <!-- - #34567: ... --> URL: #37932 Reported by: Frédéric Chapoton Reviewer(s):
2 parents c9c0a54 + cc2d79c commit d192614

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sage/interfaces/singular.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1409,7 +1409,7 @@ def _repr_(self):
14091409
# this is our cue that singular uses `rp` instead of `ip`
14101410
if singular_name_mapping['invlex'] == 'rp' and 'doctest' in str(get_display_manager()):
14111411
s = re.sub('^(// .*block.* : ordering )rp$', '\\1ip',
1412-
s, 0, re.MULTILINE);
1412+
s, 0, re.MULTILINE)
14131413
return s
14141414

14151415
def __copy__(self):

0 commit comments

Comments
 (0)