@@ -83,11 +83,11 @@ class {{ type }}:
83
83
def __len__ (self ) - > int : ...
84
84
def __getitem__ (self , key : int ) - > {{ component_type }}: ...
85
85
def __eq__ (self , other : Any ) - > _bool : ...
86
- def __neq__ (self , other : Any ) - > _bool : ...
86
+ def __ne__ (self , other : Any ) - > _bool : ...
87
87
def __lt__ (self , other : Any ) - > _bool : ...
88
- def __lte__ (self , other : Any ) - > _bool : ...
88
+ def __le__ (self , other : Any ) - > _bool : ...
89
89
def __gt__ (self , other : Any ) - > _bool : ...
90
- def __gte__ (self , other : Any ) - > _bool : ...
90
+ def __ge__ (self , other : Any ) - > _bool : ...
91
91
92
92
@overload
93
93
def __add__ (self , other : {{ type }}) - > {{ type }}: ...
@@ -224,7 +224,7 @@ class {{ type }}Array:
224
224
@overload
225
225
def __getitem__ (self , index : slice ) - > {{ type }}Array : ...
226
226
def __eq__ (self , other : Any ) - > _bool : ...
227
- def __neq__ (self , other : Any ) - > _bool : ...
227
+ def __ne__ (self , other : Any ) - > _bool : ...
228
228
def __bool__ (self ) - > _bool : ...
229
229
230
230
@property
@@ -287,7 +287,7 @@ class {{ type }}:
287
287
def __len__ (self ) - > int : ...
288
288
def __getitem__ (self ) - > {{ column_type }}: ...
289
289
def __eq__ (self , other : Any ) - > _bool : ...
290
- def __neq__ (self , other : Any ) - > _bool : ...
290
+ def __ne__ (self , other : Any ) - > _bool : ...
291
291
292
292
@overload
293
293
def __add__ (self , other : {{ type }}) - > {{ type }}: ...
@@ -401,7 +401,7 @@ class {{ type }}Array:
401
401
@overload
402
402
def __getitem__ (self , index : slice ) - > {{ type }}Array : ...
403
403
def __eq__ (self , other : Any ) - > _bool : ...
404
- def __neq__ (self , other : Any ) - > _bool : ...
404
+ def __ne__ (self , other : Any ) - > _bool : ...
405
405
def __bool__ (self ) - > _bool : ...
406
406
407
407
@property
@@ -447,7 +447,7 @@ class {{ type }}:
447
447
def __len__ (self ) - > int : ...
448
448
def __getitem__ (self ) - > float : ...
449
449
def __eq__ (self , other : Any ) - > _bool : ...
450
- def __neq__ (self , other : Any ) - > _bool : ...
450
+ def __ne__ (self , other : Any ) - > _bool : ...
451
451
452
452
def __add__ (self , other : {{ type }}) - > {{ type }}: ...
453
453
def __radd__ (self , other : {{ type }}) - > {{ type }}: ...
@@ -534,7 +534,7 @@ class {{ type }}Array:
534
534
@overload
535
535
def __getitem__ (self , index : slice ) - > {{ type }}Array : ...
536
536
def __eq__ (self , other : Any ) - > _bool : ...
537
- def __neq__ (self , other : Any ) - > _bool : ...
537
+ def __ne__ (self , other : Any ) - > _bool : ...
538
538
def __bool__ (self ) - > _bool : ...
539
539
540
540
@property
@@ -584,7 +584,7 @@ class {{ type }}Array:
584
584
@overload
585
585
def __getitem__ (self , index : slice ) - > {{ type }}Array : ...
586
586
def __eq__ (self , other : Any ) - > _bool : ...
587
- def __neq__ (self , other : Any ) - > _bool : ...
587
+ def __ne__ (self , other : Any ) - > _bool : ...
588
588
def __bool__ (self ) - > _bool : ...
589
589
590
590
@property
0 commit comments