@@ -11,7 +11,7 @@ FURB118.py:2:13: FURB118 [*] Use `operator.invert` instead of defining a lambda
11
11
|
12
12
= help : Replace with ` operator.invert`
13
13
14
- ℹ Safe fix
14
+ ℹ Unsafe fix
15
15
1 1 | # Errors .
16
16
2 | - op_bitnot = lambda x : ~ x
17
17
2 | + import operator
@@ -31,7 +31,7 @@ FURB118.py:3:10: FURB118 [*] Use `operator.not_` instead of defining a lambda
31
31
|
32
32
= help : Replace with ` operator.not_`
33
33
34
- ℹ Safe fix
34
+ ℹ Unsafe fix
35
35
1 1 | # Errors .
36
36
2 | + import operator
37
37
2 3 | op_bitnot = lambda x : ~ x
@@ -51,7 +51,7 @@ FURB118.py:4:10: FURB118 [*] Use `operator.pos` instead of defining a lambda
51
51
|
52
52
= help : Replace with ` operator.pos`
53
53
54
- ℹ Safe fix
54
+ ℹ Unsafe fix
55
55
1 1 | # Errors .
56
56
2 | + import operator
57
57
2 3 | op_bitnot = lambda x : ~ x
@@ -73,7 +73,7 @@ FURB118.py:5:10: FURB118 [*] Use `operator.neg` instead of defining a lambda
73
73
|
74
74
= help : Replace with ` operator.neg`
75
75
76
- ℹ Safe fix
76
+ ℹ Unsafe fix
77
77
1 1 | # Errors .
78
78
2 | + import operator
79
79
2 3 | op_bitnot = lambda x : ~ x
@@ -96,7 +96,7 @@ FURB118.py:7:10: FURB118 [*] Use `operator.add` instead of defining a lambda
96
96
|
97
97
= help : Replace with ` operator.add`
98
98
99
- ℹ Safe fix
99
+ ℹ Unsafe fix
100
100
1 1 | # Errors .
101
101
2 | + import operator
102
102
2 3 | op_bitnot = lambda x : ~ x
@@ -120,7 +120,7 @@ FURB118.py:8:10: FURB118 [*] Use `operator.sub` instead of defining a lambda
120
120
|
121
121
= help : Replace with ` operator.sub`
122
122
123
- ℹ Safe fix
123
+ ℹ Unsafe fix
124
124
1 1 | # Errors .
125
125
2 | + import operator
126
126
2 3 | op_bitnot = lambda x : ~ x
@@ -146,7 +146,7 @@ FURB118.py:9:11: FURB118 [*] Use `operator.mul` instead of defining a lambda
146
146
|
147
147
= help : Replace with ` operator.mul`
148
148
149
- ℹ Safe fix
149
+ ℹ Unsafe fix
150
150
1 1 | # Errors .
151
151
2 | + import operator
152
152
2 3 | op_bitnot = lambda x : ~ x
@@ -173,7 +173,7 @@ FURB118.py:10:14: FURB118 [*] Use `operator.matmul` instead of defining a lambda
173
173
|
174
174
= help : Replace with ` operator.matmul`
175
175
176
- ℹ Safe fix
176
+ ℹ Unsafe fix
177
177
1 1 | # Errors .
178
178
2 | + import operator
179
179
2 3 | op_bitnot = lambda x : ~ x
@@ -200,7 +200,7 @@ FURB118.py:11:14: FURB118 [*] Use `operator.truediv` instead of defining a lambd
200
200
|
201
201
= help : Replace with ` operator.truediv`
202
202
203
- ℹ Safe fix
203
+ ℹ Unsafe fix
204
204
1 1 | # Errors .
205
205
2 | + import operator
206
206
2 3 | op_bitnot = lambda x : ~ x
@@ -227,7 +227,7 @@ FURB118.py:12:10: FURB118 [*] Use `operator.mod` instead of defining a lambda
227
227
|
228
228
= help : Replace with ` operator.mod`
229
229
230
- ℹ Safe fix
230
+ ℹ Unsafe fix
231
231
1 1 | # Errors .
232
232
2 | + import operator
233
233
2 3 | op_bitnot = lambda x : ~ x
@@ -254,7 +254,7 @@ FURB118.py:13:10: FURB118 [*] Use `operator.pow` instead of defining a lambda
254
254
|
255
255
= help : Replace with ` operator.pow`
256
256
257
- ℹ Safe fix
257
+ ℹ Unsafe fix
258
258
1 1 | # Errors .
259
259
2 | + import operator
260
260
2 3 | op_bitnot = lambda x : ~ x
@@ -281,7 +281,7 @@ FURB118.py:14:13: FURB118 [*] Use `operator.lshift` instead of defining a lambda
281
281
|
282
282
= help : Replace with ` operator.lshift`
283
283
284
- ℹ Safe fix
284
+ ℹ Unsafe fix
285
285
1 1 | # Errors .
286
286
2 | + import operator
287
287
2 3 | op_bitnot = lambda x : ~ x
@@ -308,7 +308,7 @@ FURB118.py:15:13: FURB118 [*] Use `operator.rshift` instead of defining a lambda
308
308
|
309
309
= help : Replace with ` operator.rshift`
310
310
311
- ℹ Safe fix
311
+ ℹ Unsafe fix
312
312
1 1 | # Errors .
313
313
2 | + import operator
314
314
2 3 | op_bitnot = lambda x : ~ x
@@ -335,7 +335,7 @@ FURB118.py:16:12: FURB118 [*] Use `operator.or_` instead of defining a lambda
335
335
|
336
336
= help : Replace with ` operator.or_`
337
337
338
- ℹ Safe fix
338
+ ℹ Unsafe fix
339
339
1 1 | # Errors .
340
340
2 | + import operator
341
341
2 3 | op_bitnot = lambda x : ~ x
@@ -362,7 +362,7 @@ FURB118.py:17:10: FURB118 [*] Use `operator.xor` instead of defining a lambda
362
362
|
363
363
= help : Replace with ` operator.xor`
364
364
365
- ℹ Safe fix
365
+ ℹ Unsafe fix
366
366
1 1 | # Errors .
367
367
2 | + import operator
368
368
2 3 | op_bitnot = lambda x : ~ x
@@ -388,7 +388,7 @@ FURB118.py:18:13: FURB118 [*] Use `operator.and_` instead of defining a lambda
388
388
|
389
389
= help : Replace with ` operator.and_`
390
390
391
- ℹ Safe fix
391
+ ℹ Unsafe fix
392
392
1 1 | # Errors .
393
393
2 | + import operator
394
394
2 3 | op_bitnot = lambda x : ~ x
@@ -415,7 +415,7 @@ FURB118.py:19:15: FURB118 [*] Use `operator.floordiv` instead of defining a lamb
415
415
|
416
416
= help : Replace with ` operator.floordiv`
417
417
418
- ℹ Safe fix
418
+ ℹ Unsafe fix
419
419
1 1 | # Errors .
420
420
2 | + import operator
421
421
2 3 | op_bitnot = lambda x : ~ x
@@ -442,7 +442,7 @@ FURB118.py:21:9: FURB118 [*] Use `operator.eq` instead of defining a lambda
442
442
|
443
443
= help : Replace with ` operator.eq`
444
444
445
- ℹ Safe fix
445
+ ℹ Unsafe fix
446
446
1 1 | # Errors .
447
447
2 | + import operator
448
448
2 3 | op_bitnot = lambda x : ~ x
@@ -468,7 +468,7 @@ FURB118.py:22:9: FURB118 [*] Use `operator.ne` instead of defining a lambda
468
468
|
469
469
= help : Replace with ` operator.ne`
470
470
471
- ℹ Safe fix
471
+ ℹ Unsafe fix
472
472
1 1 | # Errors .
473
473
2 | + import operator
474
474
2 3 | op_bitnot = lambda x : ~ x
@@ -495,7 +495,7 @@ FURB118.py:23:9: FURB118 [*] Use `operator.lt` instead of defining a lambda
495
495
|
496
496
= help : Replace with ` operator.lt`
497
497
498
- ℹ Safe fix
498
+ ℹ Unsafe fix
499
499
1 1 | # Errors .
500
500
2 | + import operator
501
501
2 3 | op_bitnot = lambda x : ~ x
@@ -522,7 +522,7 @@ FURB118.py:24:10: FURB118 [*] Use `operator.le` instead of defining a lambda
522
522
|
523
523
= help : Replace with ` operator.le`
524
524
525
- ℹ Safe fix
525
+ ℹ Unsafe fix
526
526
1 1 | # Errors .
527
527
2 | + import operator
528
528
2 3 | op_bitnot = lambda x : ~ x
@@ -549,7 +549,7 @@ FURB118.py:25:9: FURB118 [*] Use `operator.gt` instead of defining a lambda
549
549
|
550
550
= help : Replace with ` operator.gt`
551
551
552
- ℹ Safe fix
552
+ ℹ Unsafe fix
553
553
1 1 | # Errors .
554
554
2 | + import operator
555
555
2 3 | op_bitnot = lambda x : ~ x
@@ -576,7 +576,7 @@ FURB118.py:26:10: FURB118 [*] Use `operator.ge` instead of defining a lambda
576
576
|
577
577
= help : Replace with ` operator.ge`
578
578
579
- ℹ Safe fix
579
+ ℹ Unsafe fix
580
580
1 1 | # Errors .
581
581
2 | + import operator
582
582
2 3 | op_bitnot = lambda x : ~ x
@@ -603,7 +603,7 @@ FURB118.py:27:9: FURB118 [*] Use `operator.is_` instead of defining a lambda
603
603
|
604
604
= help : Replace with ` operator.is_`
605
605
606
- ℹ Safe fix
606
+ ℹ Unsafe fix
607
607
1 1 | # Errors .
608
608
2 | + import operator
609
609
2 3 | op_bitnot = lambda x : ~ x
@@ -630,7 +630,7 @@ FURB118.py:28:12: FURB118 [*] Use `operator.is_not` instead of defining a lambda
630
630
|
631
631
= help : Replace with ` operator.is_not`
632
632
633
- ℹ Safe fix
633
+ ℹ Unsafe fix
634
634
1 1 | # Errors .
635
635
2 | + import operator
636
636
2 3 | op_bitnot = lambda x : ~ x
@@ -657,7 +657,7 @@ FURB118.py:29:9: FURB118 [*] Use `operator.contains` instead of defining a lambd
657
657
|
658
658
= help : Replace with ` operator.contains`
659
659
660
- ℹ Safe fix
660
+ ℹ Unsafe fix
661
661
1 1 | # Errors .
662
662
2 | + import operator
663
663
2 3 | op_bitnot = lambda x : ~ x
@@ -684,7 +684,7 @@ FURB118.py:30:17: FURB118 [*] Use `operator.itemgetter(0)` instead of defining a
684
684
|
685
685
= help : Replace with ` operator.itemgetter(0)`
686
686
687
- ℹ Safe fix
687
+ ℹ Unsafe fix
688
688
1 1 | # Errors .
689
689
2 | + import operator
690
690
2 3 | op_bitnot = lambda x : ~ x
@@ -711,7 +711,7 @@ FURB118.py:31:17: FURB118 [*] Use `operator.itemgetter(0, 1, 2)` instead of defi
711
711
|
712
712
= help : Replace with ` operator.itemgetter(0, 1, 2)`
713
713
714
- ℹ Safe fix
714
+ ℹ Unsafe fix
715
715
1 1 | # Errors .
716
716
2 | + import operator
717
717
2 3 | op_bitnot = lambda x : ~ x
@@ -738,7 +738,7 @@ FURB118.py:32:17: FURB118 [*] Use `operator.itemgetter(slice(1, None), 2)` inste
738
738
|
739
739
= help : Replace with ` operator.itemgetter(slice(1, None), 2)`
740
740
741
- ℹ Safe fix
741
+ ℹ Unsafe fix
742
742
1 1 | # Errors .
743
743
2 | + import operator
744
744
2 3 | op_bitnot = lambda x : ~ x
@@ -765,7 +765,7 @@ FURB118.py:33:17: FURB118 [*] Use `operator.itemgetter(slice(None))` instead of
765
765
|
766
766
= help : Replace with ` operator.itemgetter(slice(None))`
767
767
768
- ℹ Safe fix
768
+ ℹ Unsafe fix
769
769
1 1 | # Errors .
770
770
2 | + import operator
771
771
2 3 | op_bitnot = lambda x : ~ x
@@ -791,7 +791,7 @@ FURB118.py:34:17: FURB118 [*] Use `operator.itemgetter((0, 1))` instead of defin
791
791
|
792
792
= help : Replace with ` operator.itemgetter((0, 1))`
793
793
794
- ℹ Safe fix
794
+ ℹ Unsafe fix
795
795
1 1 | # Errors .
796
796
2 | + import operator
797
797
2 3 | op_bitnot = lambda x : ~ x
@@ -816,7 +816,7 @@ FURB118.py:35:17: FURB118 [*] Use `operator.itemgetter((0, 1))` instead of defin
816
816
|
817
817
= help : Replace with ` operator.itemgetter((0, 1))`
818
818
819
- ℹ Safe fix
819
+ ℹ Unsafe fix
820
820
1 1 | # Errors .
821
821
2 | + import operator
822
822
2 3 | op_bitnot = lambda x : ~ x
@@ -857,7 +857,7 @@ FURB118.py:88:17: FURB118 [*] Use `operator.itemgetter((slice(None), 1))` instea
857
857
|
858
858
= help: Replace with `operator.itemgetter((slice (None ), 1))`
859
859
860
- ℹ Safe fix
860
+ ℹ Unsafe fix
861
861
1 1 | # Errors.
862
862
2 |+import operator
863
863
2 3 | op_bitnot = lambda x: ~x
@@ -884,7 +884,7 @@ FURB118.py:89:17: FURB118 [*] Use `operator.itemgetter((1, slice(None)))` instea
884
884
|
885
885
= help: Replace with `operator.itemgetter((1, slice (None )))`
886
886
887
- ℹ Safe fix
887
+ ℹ Unsafe fix
888
888
1 1 | # Errors.
889
889
2 |+import operator
890
890
2 3 | op_bitnot = lambda x: ~x
@@ -910,7 +910,7 @@ FURB118.py:92:17: FURB118 [*] Use `operator.itemgetter((1, slice(None)))` instea
910
910
|
911
911
= help: Replace with `operator.itemgetter((1, slice (None )))`
912
912
913
- ℹ Safe fix
913
+ ℹ Unsafe fix
914
914
1 1 | # Errors.
915
915
2 |+import operator
916
916
2 3 | op_bitnot = lambda x: ~x
@@ -934,7 +934,7 @@ FURB118.py:95:17: FURB118 [*] Use `operator.itemgetter((1, 2))` instead
934
934
|
935
935
= help: Replace with `operator.itemgetter((1, 2))`
936
936
937
- ℹ Safe fix
937
+ ℹ Unsafe fix
938
938
1 1 | # Errors.
939
939
2 |+import operator
940
940
2 3 | op_bitnot = lambda x: ~x
0 commit comments