Skip to content

Commit e289a45

Browse files
committed
Fx ruff
1 parent f8984e0 commit e289a45

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sage/misc/sageinspect.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ def isclassinstance(obj):
204204
not (isinstance(obj.__class__.__module__, str) and
205205
obj.__class__.__module__.startswith('_cython_')) and
206206
# In Cython 3.1, they have 'member_descriptor' type
207-
not 'cython_function_or_method' in str(obj.__class__.__module__))
207+
'cython_function_or_method' not in str(obj.__class__.__module__))
208208

209209

210210
# Parse strings of form "File: sage/rings/rational.pyx (starting at line 1080)"

0 commit comments

Comments
 (0)