Skip to content

Commit 7065ab8

Browse files
committed
Ignore some ruff pickiness
1 parent 1f3a870 commit 7065ab8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

pytensor/tensor/math.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -699,20 +699,20 @@ def ge(a, b):
699699

700700
def eq(a, b):
701701
"""Elementwise equality comparison, `a == b`.
702-
702+
703703
Notes
704704
-----
705-
Due to Python rules, it is not possible to correctly overload the equality symbol `==` for hashable objects,
705+
Due to Python rules, it is not possible to correctly overload the equality symbol `==` for hashable objects,
706706
so `eq` must always be used to compute the Elemwise equality of TensorVariables (which are hashable).
707707
"""
708708

709709

710710
def neq(a, b):
711711
"""Elementwise inequality comparison, `a != b`.
712-
712+
713713
Notes
714714
-----
715-
Due to Python rules, it is not possible to overload the non-equality symbol `!=` for hashable objects,
715+
Due to Python rules, it is not possible to overload the non-equality symbol `!=` for hashable objects,
716716
so `neq` must always be used to compute the Elemwise non-equality of TensorVariables (which are hashable).
717717
"""
718718

0 commit comments

Comments
 (0)