Skip to content

Commit 0eb0fa7

Browse files
author
Release Manager
committed
gh-40385: Fix lint Any idea why lint keeps failing? Unexpected ruff version? (how does `uv` determine the version? @tobiasdiez ? ) ### 📝 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: #40385 Reported by: user202729 Reviewer(s): Tobias Diez, user202729
2 parents 4e3136b + e24e33e commit 0eb0fa7

File tree

4 files changed

+4
-2
lines changed

4 files changed

+4
-2
lines changed

src/sage/doctest/reporting.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@
5454
if sys.platform != "win32":
5555
from signal import SIGALRM, SIGBUS, SIGHUP, SIGKILL, SIGPIPE, SIGQUIT
5656

57+
5758
def signal_name(sig: int | Signals) -> str: # noqa: PLR0911
5859
"""
5960
Return a string describing a signal number.

src/sage/geometry/hyperbolic_space/hyperbolic_coercion.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ def image_coordinates(self, x):
298298
sage: phi.image_coordinates(-I)
299299
0
300300
301-
TESTS::
301+
TESTS:
302302
303303
Check that the second bug discussed in :issue:`32362` is fixed::
304304

src/sage/geometry/hyperbolic_space/hyperbolic_geodesic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1213,7 +1213,7 @@ def ideal_endpoints(self):
12131213
[Boundary point in UHP -sqrt(65) + 9,
12141214
Boundary point in UHP sqrt(65) + 9]
12151215
1216-
TESTS::
1216+
TESTS:
12171217
12181218
Check that :issue:`32362` is fixed::
12191219

src/sage/interfaces/r.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -302,6 +302,7 @@
302302
# silence rpy2 warnings
303303
logging.getLogger('rpy2.rinterface_lib.callbacks').setLevel(logging.ERROR)
304304

305+
305306
def _setup_r_to_sage_converter():
306307
"""
307308
Set up a the converter used to convert from rpy2's

0 commit comments

Comments
 (0)