-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpylint_output.txt
4016 lines (3897 loc) · 269 KB
/
pylint_output.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
************* Module .pylintrc
.pylintrc:1:0: R0022: Useless option value for '--disable', 'print-statement' was removed from pylint, see https://github.com/pylint-dev/pylint/pull/4942. (useless-option-value)
.pylintrc:1:0: R0022: Useless option value for '--disable', 'parameter-unpacking' was removed from pylint, see https://github.com/pylint-dev/pylint/pull/4942. (useless-option-value)
.pylintrc:1:0: R0022: Useless option value for '--disable', 'unpacking-in-except' was removed from pylint, see https://github.com/pylint-dev/pylint/pull/4942. (useless-option-value)
.pylintrc:1:0: R0022: Useless option value for '--disable', 'old-raise-syntax' was removed from pylint, see https://github.com/pylint-dev/pylint/pull/4942. (useless-option-value)
.pylintrc:1:0: R0022: Useless option value for '--disable', 'backtick' was removed from pylint, see https://github.com/pylint-dev/pylint/pull/4942. (useless-option-value)
.pylintrc:1:0: R0022: Useless option value for '--disable', 'import-star-module-level' was removed from pylint, see https://github.com/pylint-dev/pylint/pull/4942. (useless-option-value)
.pylintrc:1:0: R0022: Useless option value for '--disable', 'apply-builtin' was removed from pylint, see https://github.com/pylint-dev/pylint/pull/4942. (useless-option-value)
.pylintrc:1:0: R0022: Useless option value for '--disable', 'basestring-builtin' was removed from pylint, see https://github.com/pylint-dev/pylint/pull/4942. (useless-option-value)
.pylintrc:1:0: R0022: Useless option value for '--disable', 'buffer-builtin' was removed from pylint, see https://github.com/pylint-dev/pylint/pull/4942. (useless-option-value)
.pylintrc:1:0: R0022: Useless option value for '--disable', 'cmp-builtin' was removed from pylint, see https://github.com/pylint-dev/pylint/pull/4942. (useless-option-value)
.pylintrc:1:0: R0022: Useless option value for '--disable', 'coerce-builtin' was removed from pylint, see https://github.com/pylint-dev/pylint/pull/4942. (useless-option-value)
.pylintrc:1:0: R0022: Useless option value for '--disable', 'execfile-builtin' was removed from pylint, see https://github.com/pylint-dev/pylint/pull/4942. (useless-option-value)
.pylintrc:1:0: R0022: Useless option value for '--disable', 'file-builtin' was removed from pylint, see https://github.com/pylint-dev/pylint/pull/4942. (useless-option-value)
.pylintrc:1:0: R0022: Useless option value for '--disable', 'long-builtin' was removed from pylint, see https://github.com/pylint-dev/pylint/pull/4942. (useless-option-value)
.pylintrc:1:0: R0022: Useless option value for '--disable', 'raw_input-builtin' was removed from pylint, see https://github.com/pylint-dev/pylint/pull/4942. (useless-option-value)
.pylintrc:1:0: R0022: Useless option value for '--disable', 'reduce-builtin' was removed from pylint, see https://github.com/pylint-dev/pylint/pull/4942. (useless-option-value)
.pylintrc:1:0: R0022: Useless option value for '--disable', 'standarderror-builtin' was removed from pylint, see https://github.com/pylint-dev/pylint/pull/4942. (useless-option-value)
.pylintrc:1:0: R0022: Useless option value for '--disable', 'unicode-builtin' was removed from pylint, see https://github.com/pylint-dev/pylint/pull/4942. (useless-option-value)
.pylintrc:1:0: R0022: Useless option value for '--disable', 'xrange-builtin' was removed from pylint, see https://github.com/pylint-dev/pylint/pull/4942. (useless-option-value)
.pylintrc:1:0: R0022: Useless option value for '--disable', 'coerce-method' was removed from pylint, see https://github.com/pylint-dev/pylint/pull/4942. (useless-option-value)
.pylintrc:1:0: R0022: Useless option value for '--disable', 'delslice-method' was removed from pylint, see https://github.com/pylint-dev/pylint/pull/4942. (useless-option-value)
.pylintrc:1:0: R0022: Useless option value for '--disable', 'getslice-method' was removed from pylint, see https://github.com/pylint-dev/pylint/pull/4942. (useless-option-value)
.pylintrc:1:0: R0022: Useless option value for '--disable', 'setslice-method' was removed from pylint, see https://github.com/pylint-dev/pylint/pull/4942. (useless-option-value)
.pylintrc:1:0: R0022: Useless option value for '--disable', 'no-absolute-import' was removed from pylint, see https://github.com/pylint-dev/pylint/pull/4942. (useless-option-value)
.pylintrc:1:0: R0022: Useless option value for '--disable', 'old-division' was removed from pylint, see https://github.com/pylint-dev/pylint/pull/4942. (useless-option-value)
.pylintrc:1:0: R0022: Useless option value for '--disable', 'dict-iter-method' was removed from pylint, see https://github.com/pylint-dev/pylint/pull/4942. (useless-option-value)
.pylintrc:1:0: R0022: Useless option value for '--disable', 'dict-view-method' was removed from pylint, see https://github.com/pylint-dev/pylint/pull/4942. (useless-option-value)
.pylintrc:1:0: R0022: Useless option value for '--disable', 'next-method-called' was removed from pylint, see https://github.com/pylint-dev/pylint/pull/4942. (useless-option-value)
.pylintrc:1:0: R0022: Useless option value for '--disable', 'metaclass-assignment' was removed from pylint, see https://github.com/pylint-dev/pylint/pull/4942. (useless-option-value)
.pylintrc:1:0: R0022: Useless option value for '--disable', 'indexing-exception' was removed from pylint, see https://github.com/pylint-dev/pylint/pull/4942. (useless-option-value)
.pylintrc:1:0: R0022: Useless option value for '--disable', 'raising-string' was removed from pylint, see https://github.com/pylint-dev/pylint/pull/4942. (useless-option-value)
.pylintrc:1:0: R0022: Useless option value for '--disable', 'reload-builtin' was removed from pylint, see https://github.com/pylint-dev/pylint/pull/4942. (useless-option-value)
.pylintrc:1:0: R0022: Useless option value for '--disable', 'oct-method' was removed from pylint, see https://github.com/pylint-dev/pylint/pull/4942. (useless-option-value)
.pylintrc:1:0: R0022: Useless option value for '--disable', 'hex-method' was removed from pylint, see https://github.com/pylint-dev/pylint/pull/4942. (useless-option-value)
.pylintrc:1:0: R0022: Useless option value for '--disable', 'nonzero-method' was removed from pylint, see https://github.com/pylint-dev/pylint/pull/4942. (useless-option-value)
.pylintrc:1:0: R0022: Useless option value for '--disable', 'cmp-method' was removed from pylint, see https://github.com/pylint-dev/pylint/pull/4942. (useless-option-value)
.pylintrc:1:0: R0022: Useless option value for '--disable', 'input-builtin' was removed from pylint, see https://github.com/pylint-dev/pylint/pull/4942. (useless-option-value)
.pylintrc:1:0: R0022: Useless option value for '--disable', 'round-builtin' was removed from pylint, see https://github.com/pylint-dev/pylint/pull/4942. (useless-option-value)
.pylintrc:1:0: R0022: Useless option value for '--disable', 'intern-builtin' was removed from pylint, see https://github.com/pylint-dev/pylint/pull/4942. (useless-option-value)
.pylintrc:1:0: R0022: Useless option value for '--disable', 'unichr-builtin' was removed from pylint, see https://github.com/pylint-dev/pylint/pull/4942. (useless-option-value)
.pylintrc:1:0: R0022: Useless option value for '--disable', 'map-builtin-not-iterating' was removed from pylint, see https://github.com/pylint-dev/pylint/pull/4942. (useless-option-value)
.pylintrc:1:0: R0022: Useless option value for '--disable', 'zip-builtin-not-iterating' was removed from pylint, see https://github.com/pylint-dev/pylint/pull/4942. (useless-option-value)
.pylintrc:1:0: R0022: Useless option value for '--disable', 'range-builtin-not-iterating' was removed from pylint, see https://github.com/pylint-dev/pylint/pull/4942. (useless-option-value)
.pylintrc:1:0: R0022: Useless option value for '--disable', 'filter-builtin-not-iterating' was removed from pylint, see https://github.com/pylint-dev/pylint/pull/4942. (useless-option-value)
.pylintrc:1:0: R0022: Useless option value for '--disable', 'using-cmp-argument' was removed from pylint, see https://github.com/pylint-dev/pylint/pull/4942. (useless-option-value)
.pylintrc:1:0: R0022: Useless option value for '--disable', 'div-method' was removed from pylint, see https://github.com/pylint-dev/pylint/pull/4942. (useless-option-value)
.pylintrc:1:0: R0022: Useless option value for '--disable', 'idiv-method' was removed from pylint, see https://github.com/pylint-dev/pylint/pull/4942. (useless-option-value)
.pylintrc:1:0: R0022: Useless option value for '--disable', 'rdiv-method' was removed from pylint, see https://github.com/pylint-dev/pylint/pull/4942. (useless-option-value)
.pylintrc:1:0: R0022: Useless option value for '--disable', 'exception-message-attribute' was removed from pylint, see https://github.com/pylint-dev/pylint/pull/4942. (useless-option-value)
.pylintrc:1:0: R0022: Useless option value for '--disable', 'invalid-str-codec' was removed from pylint, see https://github.com/pylint-dev/pylint/pull/4942. (useless-option-value)
.pylintrc:1:0: R0022: Useless option value for '--disable', 'sys-max-int' was removed from pylint, see https://github.com/pylint-dev/pylint/pull/4942. (useless-option-value)
.pylintrc:1:0: R0022: Useless option value for '--disable', 'bad-python3-import' was removed from pylint, see https://github.com/pylint-dev/pylint/pull/4942. (useless-option-value)
.pylintrc:1:0: R0022: Useless option value for '--disable', 'deprecated-string-function' was removed from pylint, see https://github.com/pylint-dev/pylint/pull/4942. (useless-option-value)
.pylintrc:1:0: R0022: Useless option value for '--disable', 'deprecated-str-translate-call' was removed from pylint, see https://github.com/pylint-dev/pylint/pull/4942. (useless-option-value)
.pylintrc:1:0: R0022: Useless option value for '--disable', 'deprecated-itertools-function' was removed from pylint, see https://github.com/pylint-dev/pylint/pull/4942. (useless-option-value)
.pylintrc:1:0: R0022: Useless option value for '--disable', 'deprecated-types-field' was removed from pylint, see https://github.com/pylint-dev/pylint/pull/4942. (useless-option-value)
.pylintrc:1:0: R0022: Useless option value for '--disable', 'next-method-defined' was removed from pylint, see https://github.com/pylint-dev/pylint/pull/4942. (useless-option-value)
.pylintrc:1:0: R0022: Useless option value for '--disable', 'dict-items-not-iterating' was removed from pylint, see https://github.com/pylint-dev/pylint/pull/4942. (useless-option-value)
.pylintrc:1:0: R0022: Useless option value for '--disable', 'dict-keys-not-iterating' was removed from pylint, see https://github.com/pylint-dev/pylint/pull/4942. (useless-option-value)
.pylintrc:1:0: R0022: Useless option value for '--disable', 'dict-values-not-iterating' was removed from pylint, see https://github.com/pylint-dev/pylint/pull/4942. (useless-option-value)
.pylintrc:1:0: R0022: Useless option value for '--disable', 'deprecated-operator-function' was removed from pylint, see https://github.com/pylint-dev/pylint/pull/4942. (useless-option-value)
.pylintrc:1:0: R0022: Useless option value for '--disable', 'deprecated-urllib-function' was removed from pylint, see https://github.com/pylint-dev/pylint/pull/4942. (useless-option-value)
.pylintrc:1:0: R0022: Useless option value for '--disable', 'xreadlines-attribute' was removed from pylint, see https://github.com/pylint-dev/pylint/pull/4942. (useless-option-value)
.pylintrc:1:0: R0022: Useless option value for '--disable', 'deprecated-sys-function' was removed from pylint, see https://github.com/pylint-dev/pylint/pull/4942. (useless-option-value)
.pylintrc:1:0: R0022: Useless option value for '--disable', 'exception-escape' was removed from pylint, see https://github.com/pylint-dev/pylint/pull/4942. (useless-option-value)
.pylintrc:1:0: R0022: Useless option value for '--disable', 'comprehension-escape' was removed from pylint, see https://github.com/pylint-dev/pylint/pull/4942. (useless-option-value)
.pylintrc:1:0: W0012: Unknown option value for '--disable', expected a valid pylint message and got 'long-suffix' (unknown-option-value)
.pylintrc:1:0: W0012: Unknown option value for '--disable', expected a valid pylint message and got 'old-ne-operator' (unknown-option-value)
.pylintrc:1:0: W0012: Unknown option value for '--disable', expected a valid pylint message and got 'old-octal-literal' (unknown-option-value)
.pylintrc:1:0: W0012: Unknown option value for '--disable', expected a valid pylint message and got 'non-ascii-bytes-literal' (unknown-option-value)
.pylintrc:1:0: W0012: Unknown option value for '--disable', expected a valid pylint message and got 'eq-without-hash' (unknown-option-value)
************* Module spydrnet
spydrnet/__init__.py:70:0: C0301: Line too long (117/100) (line-too-long)
spydrnet/__init__.py:38:0: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/__init__.py:38:24: C0103: Argument name "LOG_LEVEL" doesn't conform to snake_case naming style (invalid-name)
spydrnet/__init__.py:38:24: W0621: Redefining name 'LOG_LEVEL' from outer scope (line 32) (redefined-outer-name)
spydrnet/__init__.py:55:0: E1205: Too many arguments for logging format string (logging-too-many-args)
spydrnet/__init__.py:58:0: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/__init__.py:68:12: W0621: Redefining name 'plugin' from outer scope (line 95) (redefined-outer-name)
spydrnet/__init__.py:68:22: R1732: Consider using 'with' for resource-allocating operations (consider-using-with)
spydrnet/__init__.py:68:22: W1514: Using open without explicitly specifying an encoding (unspecified-encoding)
spydrnet/__init__.py:76:16: W1201: Use lazy % formatting in logging functions (logging-not-lazy)
spydrnet/__init__.py:76:29: C0209: Formatting a regular string which could be a f-string (consider-using-f-string)
spydrnet/__init__.py:81:0: E1205: Too many arguments for logging format string (logging-too-many-args)
spydrnet/__init__.py:84:0: C0413: Import "from spydrnet import release" should be placed at the top of the module (wrong-import-position)
spydrnet/__init__.py:86:13: C0209: Formatting a regular string which could be a f-string (consider-using-f-string)
spydrnet/__init__.py:95:0: C0413: Import "from spydrnet.ir import *" should be placed at the top of the module (wrong-import-position)
spydrnet/__init__.py:96:0: C0413: Import "from spydrnet.util.hierarchical_reference import HRef" should be placed at the top of the module (wrong-import-position)
spydrnet/__init__.py:103:0: C0413: Import "from spydrnet.composers import compose" should be placed at the top of the module (wrong-import-position)
spydrnet/__init__.py:104:0: C0413: Import "from spydrnet.parsers import parse" should be placed at the top of the module (wrong-import-position)
spydrnet/__init__.py:105:0: C0413: Import "from spydrnet.plugins import namespace_manager" should be placed at the top of the module (wrong-import-position)
spydrnet/__init__.py:106:0: C0413: Import "from spydrnet.testing.test import run as test" should be placed at the top of the module (wrong-import-position)
spydrnet/__init__.py:107:0: C0413: Import "from spydrnet.util import get_cables, get_definitions, get_hcables, get_hinstances, get_hpins, get_hports, get_hwires, get_instances, get_libraries, get_netlists, get_pins, get_ports, get_wires" should be placed at the top of the module (wrong-import-position)
spydrnet/__init__.py:122:0: C0413: Import "from spydrnet.util.selection import ALL, BOTH, INSIDE, OUTSIDE" should be placed at the top of the module (wrong-import-position)
spydrnet/__init__.py:123:0: C0413: Import "from spydrnet.util.netlist_type import EDIF, VERILOG, EBLIF" should be placed at the top of the module (wrong-import-position)
spydrnet/__init__.py:126:0: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/__init__.py:127:4: W0621: Redefining name 'example_netlists_path' from outer scope (line 166) (redefined-outer-name)
spydrnet/__init__.py:148:12: W0621: Redefining name 'filename' from outer scope (line 95) (redefined-outer-name)
spydrnet/__init__.py:136:8: W0104: Statement seems to have no effect (pointless-statement)
spydrnet/__init__.py:149:23: W3101: Missing timeout argument for method 'requests.get' can cause your program to hang indefinitely (missing-timeout)
spydrnet/__init__.py:152:12: C0415: Import outside toplevel (zipfile) (import-outside-toplevel)
spydrnet/__init__.py:175:0: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/__init__.py:178:8: W0621: Redefining name 'filename' from outer scope (line 95) (redefined-outer-name)
spydrnet/__init__.py:201:0: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/__init__.py:201:33: W0621: Redefining name 'name' from outer scope (line 95) (redefined-outer-name)
spydrnet/__init__.py:202:4: W0621: Redefining name 'example_netlists_path' from outer scope (line 166) (redefined-outer-name)
************* Module spydrnet.release
spydrnet/release.py:1:0: C0114: Missing module docstring (missing-module-docstring)
spydrnet/release.py:15:0: W0622: Redefining built-in 'license' (redefined-builtin)
spydrnet/release.py:5:0: C0103: Constant name "name" doesn't conform to UPPER_CASE naming style (invalid-name)
spydrnet/release.py:6:0: C0103: Constant name "version" doesn't conform to UPPER_CASE naming style (invalid-name)
spydrnet/release.py:7:0: C0103: Constant name "release" doesn't conform to UPPER_CASE naming style (invalid-name)
spydrnet/release.py:8:0: C0103: Constant name "date" doesn't conform to UPPER_CASE naming style (invalid-name)
spydrnet/release.py:12:0: C0103: Constant name "dev" doesn't conform to UPPER_CASE naming style (invalid-name)
spydrnet/release.py:14:0: C0103: Constant name "description" doesn't conform to UPPER_CASE naming style (invalid-name)
spydrnet/release.py:15:0: C0103: Constant name "license" doesn't conform to UPPER_CASE naming style (invalid-name)
spydrnet/release.py:21:0: C0103: Constant name "maintainer" doesn't conform to UPPER_CASE naming style (invalid-name)
spydrnet/release.py:22:0: C0103: Constant name "maintainer_email" doesn't conform to UPPER_CASE naming style (invalid-name)
spydrnet/release.py:23:0: C0103: Constant name "url" doesn't conform to UPPER_CASE naming style (invalid-name)
spydrnet/release.py:69:0: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/release.py:70:4: W0603: Using the global statement (global-statement)
spydrnet/release.py:71:4: W0603: Using the global statement (global-statement)
spydrnet/release.py:72:4: W0603: Using the global statement (global-statement)
spydrnet/release.py:74:13: W1514: Using open without explicitly specifying an encoding (unspecified-encoding)
spydrnet/release.py:74:39: C0103: Variable name "fi" doesn't conform to snake_case naming style (invalid-name)
spydrnet/release.py:83:15: W0612: Unused variable 'char' (unused-variable)
spydrnet/release.py:94:0: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/release.py:95:4: C0415: Import outside toplevel (datetime) (import-outside-toplevel)
spydrnet/release.py:96:4: C0415: Import outside toplevel (time) (import-outside-toplevel)
spydrnet/release.py:97:4: C0415: Import outside toplevel (subprocess) (import-outside-toplevel)
spydrnet/release.py:99:4: W0603: Using the global statement (global-statement)
spydrnet/release.py:100:4: W0603: Using the global statement (global-statement)
spydrnet/release.py:127:17: W1514: Using open without explicitly specifying an encoding (unspecified-encoding)
spydrnet/release.py:127:44: C0103: Variable name "fh" doesn't conform to snake_case naming style (invalid-name)
spydrnet/release.py:119:25: R1732: Consider using 'with' for resource-allocating operations (consider-using-with)
************* Module spydrnet.uniquify
spydrnet/uniquify.py:1:0: C0114: Missing module docstring (missing-module-docstring)
spydrnet/uniquify.py:7:0: W0105: String statement has no effect (pointless-string-statement)
spydrnet/uniquify.py:19:4: W0603: Using the global statement (global-statement)
************* Module spydrnet.flatten
spydrnet/flatten.py:87:1: W0511: #TODO put this code somewhere where people can use it to visualize simple netlists (fixme)
spydrnet/flatten.py:1:0: C0114: Missing module docstring (missing-module-docstring)
spydrnet/flatten.py:4:0: W0401: Wildcard import spydrnet.ir (wildcard-import)
spydrnet/flatten.py:6:0: W0105: String statement has no effect (pointless-string-statement)
spydrnet/flatten.py:11:0: C0103: Constant name "unique_number" doesn't conform to UPPER_CASE naming style (invalid-name)
spydrnet/flatten.py:13:0: C0103: Constant name "mod_name_uid" doesn't conform to UPPER_CASE naming style (invalid-name)
spydrnet/flatten.py:17:4: W0603: Using the global statement (global-statement)
spydrnet/flatten.py:23:20: C0103: Argument name "e" doesn't conform to snake_case naming style (invalid-name)
spydrnet/flatten.py:24:4: W0603: Using the global statement (global-statement)
spydrnet/flatten.py:43:16: C0103: Variable name "p" doesn't conform to snake_case naming style (invalid-name)
spydrnet/flatten.py:48:16: C0103: Variable name "p" doesn't conform to snake_case naming style (invalid-name)
spydrnet/flatten.py:53:18: C0103: Argument name "e" doesn't conform to snake_case naming style (invalid-name)
spydrnet/flatten.py:56:8: W0602: Using global for 'mod_name_uid' but no assignment is done (global-variable-not-assigned)
spydrnet/flatten.py:70:8: C0103: Variable name "d" doesn't conform to snake_case naming style (invalid-name)
spydrnet/flatten.py:73:8: C0103: Variable name "d" doesn't conform to snake_case naming style (invalid-name)
spydrnet/flatten.py:4:0: W0614: Unused import(s) importlib, typing, RegisterModule, filename, eachModule, cls, name, plugin, ext_cls, cls_bases, get_active_plugins, Element, FirstClassElement, Bundle, Pin, InnerPin, OuterPin, Port, Wire, Instance, Definition, Library and Netlist from wildcard import of spydrnet.ir (unused-wildcard-import)
************* Module spydrnet.callback.callback_listener
spydrnet/callback/callback_listener.py:1:0: C0114: Missing module docstring (missing-module-docstring)
spydrnet/callback/callback_listener.py:17:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:20:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:23:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:26:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:29:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:32:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:35:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:38:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:41:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:44:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:47:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:50:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:53:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:56:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:59:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:62:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:65:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:68:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:71:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:74:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:77:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:80:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:83:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:86:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:89:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:92:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:95:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:98:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:98:4: R0912: Too many branches (27/12) (too-many-branches)
spydrnet/callback/callback_listener.py:98:4: R0915: Too many statements (55/50) (too-many-statements)
spydrnet/callback/callback_listener.py:216:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:219:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:222:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:225:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:228:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:231:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:234:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:237:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:240:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:243:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:246:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:249:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:252:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:255:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:258:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:261:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:264:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:269:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:272:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:275:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:278:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:281:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:284:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:287:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:290:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:293:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:296:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:299:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:299:4: R0912: Too many branches (27/12) (too-many-branches)
spydrnet/callback/callback_listener.py:299:4: R0915: Too many statements (55/50) (too-many-statements)
spydrnet/callback/callback_listener.py:417:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:420:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:423:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:426:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:429:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:432:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:435:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:438:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:441:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:444:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:447:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:450:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:453:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:456:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:459:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:462:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:465:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:470:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:473:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:476:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:479:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:482:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:485:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:488:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:491:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:494:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:497:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/callback/callback_listener.py:4:0: R0904: Too many public methods (83/20) (too-many-public-methods)
************* Module spydrnet.plugins
spydrnet/plugins/__init__.py:1:0: C0114: Missing module docstring (missing-module-docstring)
************* Module spydrnet.plugins.namespace_manager.edif_namespace
spydrnet/plugins/namespace_manager/edif_namespace.py:1:0: C0114: Missing module docstring (missing-module-docstring)
spydrnet/plugins/namespace_manager/edif_namespace.py:6:0: C0115: Missing class docstring (missing-class-docstring)
spydrnet/plugins/namespace_manager/edif_namespace.py:26:4: C0103: Method name "_check_EDIF_identifier" doesn't conform to snake_case naming style (invalid-name)
spydrnet/plugins/namespace_manager/edif_namespace.py:29:8: R1705: Unnecessary "else" after "return", remove the "else" and de-indent the code inside it (no-else-return)
spydrnet/plugins/namespace_manager/edif_namespace.py:41:4: R0911: Too many return statements (11/6) (too-many-return-statements)
spydrnet/plugins/namespace_manager/edif_namespace.py:41:4: R0912: Too many branches (38/12) (too-many-branches)
spydrnet/plugins/namespace_manager/edif_namespace.py:41:4: R0915: Too many statements (58/50) (too-many-statements)
spydrnet/plugins/namespace_manager/edif_namespace.py:180:4: R1710: Either all return statements in a function should return an expression, or none of them should. (inconsistent-return-statements)
************* Module spydrnet.plugins.namespace_manager.default_namespace
spydrnet/plugins/namespace_manager/default_namespace.py:1:0: C0114: Missing module docstring (missing-module-docstring)
spydrnet/plugins/namespace_manager/default_namespace.py:4:0: C0115: Missing class docstring (missing-class-docstring)
spydrnet/plugins/namespace_manager/default_namespace.py:18:38: W0613: Unused argument 'element' (unused-argument)
spydrnet/plugins/namespace_manager/default_namespace.py:27:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/plugins/namespace_manager/default_namespace.py:27:27: W0613: Unused argument 'key' (unused-argument)
spydrnet/plugins/namespace_manager/default_namespace.py:27:32: W0613: Unused argument 'value' (unused-argument)
spydrnet/plugins/namespace_manager/default_namespace.py:31:4: R0912: Too many branches (23/12) (too-many-branches)
spydrnet/plugins/namespace_manager/default_namespace.py:81:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/plugins/namespace_manager/default_namespace.py:89:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/plugins/namespace_manager/default_namespace.py:100:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/plugins/namespace_manager/default_namespace.py:112:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/plugins/namespace_manager/default_namespace.py:122:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/plugins/namespace_manager/default_namespace.py:122:4: R1710: Either all return statements in a function should return an expression, or none of them should. (inconsistent-return-statements)
************* Module spydrnet.plugins.namespace_manager
spydrnet/plugins/namespace_manager/__init__.py:1:0: C0114: Missing module docstring (missing-module-docstring)
spydrnet/plugins/namespace_manager/__init__.py:17:0: C0115: Missing class docstring (missing-class-docstring)
spydrnet/plugins/namespace_manager/__init__.py:36:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/plugins/namespace_manager/__init__.py:36:4: R1710: Either all return statements in a function should return an expression, or none of them should. (inconsistent-return-statements)
spydrnet/plugins/namespace_manager/__init__.py:100:24: C0209: Formatting a regular string which could be a f-string (consider-using-f-string)
spydrnet/plugins/namespace_manager/__init__.py:154:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/plugins/namespace_manager/__init__.py:178:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/plugins/namespace_manager/__init__.py:184:20: R1704: Redefining argument with the local name 'key' (redefined-argument-from-local)
spydrnet/plugins/namespace_manager/__init__.py:191:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/plugins/namespace_manager/__init__.py:204:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/plugins/namespace_manager/__init__.py:223:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/plugins/namespace_manager/__init__.py:261:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/plugins/namespace_manager/__init__.py:17:0: R0904: Too many public methods (28/20) (too-many-public-methods)
************* Module spydrnet.util.get_hpins
spydrnet/util/get_hpins.py:1:0: C0114: Missing module docstring (missing-module-docstring)
spydrnet/util/get_hpins.py:103:0: R0913: Too many arguments (6/5) (too-many-arguments)
spydrnet/util/get_hpins.py:111:0: R0914: Too many local variables (35/15) (too-many-locals)
spydrnet/util/get_hpins.py:116:4: R1702: Too many nested blocks (8/5) (too-many-nested-blocks)
spydrnet/util/get_hpins.py:116:4: R1702: Too many nested blocks (7/5) (too-many-nested-blocks)
spydrnet/util/get_hpins.py:116:4: R1702: Too many nested blocks (9/5) (too-many-nested-blocks)
spydrnet/util/get_hpins.py:116:4: R1702: Too many nested blocks (7/5) (too-many-nested-blocks)
spydrnet/util/get_hpins.py:222:16: C0206: Consider iterating with .items() (consider-using-dict-items)
spydrnet/util/get_hpins.py:211:4: R1702: Too many nested blocks (6/5) (too-many-nested-blocks)
spydrnet/util/get_hpins.py:111:0: R0912: Too many branches (47/12) (too-many-branches)
spydrnet/util/get_hpins.py:111:0: R0915: Too many statements (94/50) (too-many-statements)
spydrnet/util/get_hpins.py:211:4: R1702: Too many nested blocks (7/5) (too-many-nested-blocks)
spydrnet/util/get_hpins.py:231:0: R0914: Too many local variables (18/15) (too-many-locals)
spydrnet/util/get_hpins.py:257:40: C0209: Formatting a regular string which could be a f-string (consider-using-f-string)
spydrnet/util/get_hpins.py:234:4: R1702: Too many nested blocks (7/5) (too-many-nested-blocks)
spydrnet/util/get_hpins.py:231:0: R0912: Too many branches (13/12) (too-many-branches)
spydrnet/util/get_hpins.py:234:4: R1702: Too many nested blocks (6/5) (too-many-nested-blocks)
************* Module spydrnet.util.get_hcables
spydrnet/util/get_hcables.py:159:0: C0325: Unnecessary parens after 'yield' keyword (superfluous-parens)
spydrnet/util/get_hcables.py:1:0: C0114: Missing module docstring (missing-module-docstring)
spydrnet/util/get_hcables.py:78:12: C0209: Formatting a regular string which could be a f-string (consider-using-f-string)
spydrnet/util/get_hcables.py:117:0: R0913: Too many arguments (7/5) (too-many-arguments)
spydrnet/util/get_hcables.py:129:0: R0913: Too many arguments (6/5) (too-many-arguments)
spydrnet/util/get_hcables.py:129:0: R0914: Too many local variables (44/15) (too-many-locals)
spydrnet/util/get_hcables.py:135:4: R1702: Too many nested blocks (8/5) (too-many-nested-blocks)
spydrnet/util/get_hcables.py:135:4: R1702: Too many nested blocks (8/5) (too-many-nested-blocks)
spydrnet/util/get_hcables.py:135:4: R1702: Too many nested blocks (8/5) (too-many-nested-blocks)
spydrnet/util/get_hcables.py:135:4: R1702: Too many nested blocks (8/5) (too-many-nested-blocks)
spydrnet/util/get_hcables.py:135:4: R1702: Too many nested blocks (10/5) (too-many-nested-blocks)
spydrnet/util/get_hcables.py:135:4: R1702: Too many nested blocks (6/5) (too-many-nested-blocks)
spydrnet/util/get_hcables.py:278:16: C0206: Consider iterating with .items() (consider-using-dict-items)
spydrnet/util/get_hcables.py:267:4: R1702: Too many nested blocks (6/5) (too-many-nested-blocks)
spydrnet/util/get_hcables.py:129:0: R0912: Too many branches (59/12) (too-many-branches)
spydrnet/util/get_hcables.py:129:0: R0915: Too many statements (124/50) (too-many-statements)
spydrnet/util/get_hcables.py:267:4: R1702: Too many nested blocks (7/5) (too-many-nested-blocks)
spydrnet/util/get_hcables.py:290:4: R1702: Too many nested blocks (6/5) (too-many-nested-blocks)
spydrnet/util/get_hcables.py:290:4: R1702: Too many nested blocks (6/5) (too-many-nested-blocks)
spydrnet/util/get_hcables.py:343:0: R1710: Either all return statements in a function should return an expression, or none of them should. (inconsistent-return-statements)
spydrnet/util/get_hcables.py:355:0: R1710: Either all return statements in a function should return an expression, or none of them should. (inconsistent-return-statements)
************* Module spydrnet.util.get_hports
spydrnet/util/get_hports.py:139:0: C0325: Unnecessary parens after 'yield' keyword (superfluous-parens)
spydrnet/util/get_hports.py:149:0: C0325: Unnecessary parens after 'yield' keyword (superfluous-parens)
spydrnet/util/get_hports.py:1:0: C0114: Missing module docstring (missing-module-docstring)
spydrnet/util/get_hports.py:103:0: R0913: Too many arguments (6/5) (too-many-arguments)
spydrnet/util/get_hports.py:111:0: R0914: Too many local variables (33/15) (too-many-locals)
spydrnet/util/get_hports.py:116:4: R1702: Too many nested blocks (7/5) (too-many-nested-blocks)
spydrnet/util/get_hports.py:116:4: R1702: Too many nested blocks (7/5) (too-many-nested-blocks)
spydrnet/util/get_hports.py:116:4: R1702: Too many nested blocks (9/5) (too-many-nested-blocks)
spydrnet/util/get_hports.py:116:4: R1702: Too many nested blocks (7/5) (too-many-nested-blocks)
spydrnet/util/get_hports.py:215:16: C0206: Consider iterating with .items() (consider-using-dict-items)
spydrnet/util/get_hports.py:204:4: R1702: Too many nested blocks (6/5) (too-many-nested-blocks)
spydrnet/util/get_hports.py:111:0: R0912: Too many branches (45/12) (too-many-branches)
spydrnet/util/get_hports.py:111:0: R0915: Too many statements (91/50) (too-many-statements)
spydrnet/util/get_hports.py:204:4: R1702: Too many nested blocks (7/5) (too-many-nested-blocks)
spydrnet/util/get_hports.py:227:4: R1702: Too many nested blocks (6/5) (too-many-nested-blocks)
spydrnet/util/get_hports.py:227:4: R1702: Too many nested blocks (6/5) (too-many-nested-blocks)
************* Module spydrnet.util.get_libraries
spydrnet/util/get_libraries.py:1:0: C0114: Missing module docstring (missing-module-docstring)
spydrnet/util/get_libraries.py:96:12: C0209: Formatting a regular string which could be a f-string (consider-using-f-string)
spydrnet/util/get_libraries.py:139:0: R0913: Too many arguments (8/5) (too-many-arguments)
spydrnet/util/get_libraries.py:151:0: R0913: Too many arguments (7/5) (too-many-arguments)
spydrnet/util/get_libraries.py:151:0: R0914: Too many local variables (26/15) (too-many-locals)
spydrnet/util/get_libraries.py:156:4: R1702: Too many nested blocks (6/5) (too-many-nested-blocks)
spydrnet/util/get_libraries.py:156:4: R1702: Too many nested blocks (8/5) (too-many-nested-blocks)
spydrnet/util/get_libraries.py:156:4: R1702: Too many nested blocks (8/5) (too-many-nested-blocks)
spydrnet/util/get_libraries.py:156:4: R1702: Too many nested blocks (6/5) (too-many-nested-blocks)
spydrnet/util/get_libraries.py:151:0: R0912: Too many branches (60/12) (too-many-branches)
spydrnet/util/get_libraries.py:151:0: R0915: Too many statements (105/50) (too-many-statements)
************* Module spydrnet.util.hierarchical_reference
spydrnet/util/hierarchical_reference.py:1:0: C0114: Missing module docstring (missing-module-docstring)
spydrnet/util/hierarchical_reference.py:99:4: R0912: Too many branches (22/12) (too-many-branches)
spydrnet/util/hierarchical_reference.py:151:4: R0912: Too many branches (17/12) (too-many-branches)
spydrnet/util/hierarchical_reference.py:276:15: C0209: Formatting a regular string which could be a f-string (consider-using-f-string)
spydrnet/util/hierarchical_reference.py:324:16: R1705: Unnecessary "else" after "return", remove the "else" and de-indent the code inside it (no-else-return)
spydrnet/util/hierarchical_reference.py:317:4: R0911: Too many return statements (18/6) (too-many-return-statements)
spydrnet/util/hierarchical_reference.py:317:4: R0912: Too many branches (24/12) (too-many-branches)
spydrnet/util/hierarchical_reference.py:403:45: C0209: Formatting a regular string which could be a f-string (consider-using-f-string)
spydrnet/util/hierarchical_reference.py:404:16: C0209: Formatting a regular string which could be a f-string (consider-using-f-string)
************* Module spydrnet.util.netlist_type
spydrnet/util/netlist_type.py:1:0: C0114: Missing module docstring (missing-module-docstring)
spydrnet/util/netlist_type.py:4:0: C0115: Missing class docstring (missing-class-docstring)
************* Module spydrnet.util.architecture
spydrnet/util/architecture.py:1:0: C0114: Missing module docstring (missing-module-docstring)
************* Module spydrnet.util.patterns
spydrnet/util/patterns.py:1:0: C0114: Missing module docstring (missing-module-docstring)
spydrnet/util/patterns.py:6:4: R1705: Unnecessary "else" after "return", remove the "else" and de-indent the code inside it (no-else-return)
spydrnet/util/patterns.py:15:0: R1710: Either all return statements in a function should return an expression, or none of them should. (inconsistent-return-statements)
************* Module spydrnet.util.get_cables
spydrnet/util/get_cables.py:1:0: C0114: Missing module docstring (missing-module-docstring)
spydrnet/util/get_cables.py:91:12: C0209: Formatting a regular string which could be a f-string (consider-using-f-string)
spydrnet/util/get_cables.py:131:0: R0913: Too many arguments (8/5) (too-many-arguments)
spydrnet/util/get_cables.py:143:0: R0913: Too many arguments (7/5) (too-many-arguments)
spydrnet/util/get_cables.py:143:0: R0914: Too many local variables (31/15) (too-many-locals)
spydrnet/util/get_cables.py:149:4: R1702: Too many nested blocks (7/5) (too-many-nested-blocks)
spydrnet/util/get_cables.py:149:4: R1702: Too many nested blocks (8/5) (too-many-nested-blocks)
spydrnet/util/get_cables.py:149:4: R1702: Too many nested blocks (6/5) (too-many-nested-blocks)
spydrnet/util/get_cables.py:149:4: R1702: Too many nested blocks (7/5) (too-many-nested-blocks)
spydrnet/util/get_cables.py:283:16: C0206: Consider iterating with .items() (consider-using-dict-items)
spydrnet/util/get_cables.py:264:4: R1702: Too many nested blocks (6/5) (too-many-nested-blocks)
spydrnet/util/get_cables.py:143:0: R0912: Too many branches (73/12) (too-many-branches)
spydrnet/util/get_cables.py:143:0: R0915: Too many statements (128/50) (too-many-statements)
************* Module spydrnet.util.get_hwires
spydrnet/util/get_hwires.py:161:0: C0325: Unnecessary parens after 'yield' keyword (superfluous-parens)
spydrnet/util/get_hwires.py:1:0: C0114: Missing module docstring (missing-module-docstring)
spydrnet/util/get_hwires.py:78:12: C0209: Formatting a regular string which could be a f-string (consider-using-f-string)
spydrnet/util/get_hwires.py:117:0: R0913: Too many arguments (7/5) (too-many-arguments)
spydrnet/util/get_hwires.py:129:0: R0913: Too many arguments (6/5) (too-many-arguments)
spydrnet/util/get_hwires.py:129:0: R0914: Too many local variables (45/15) (too-many-locals)
spydrnet/util/get_hwires.py:135:4: R1702: Too many nested blocks (9/5) (too-many-nested-blocks)
spydrnet/util/get_hwires.py:135:4: R1702: Too many nested blocks (8/5) (too-many-nested-blocks)
spydrnet/util/get_hwires.py:135:4: R1702: Too many nested blocks (8/5) (too-many-nested-blocks)
spydrnet/util/get_hwires.py:135:4: R1702: Too many nested blocks (8/5) (too-many-nested-blocks)
spydrnet/util/get_hwires.py:135:4: R1702: Too many nested blocks (10/5) (too-many-nested-blocks)
spydrnet/util/get_hwires.py:135:4: R1702: Too many nested blocks (6/5) (too-many-nested-blocks)
spydrnet/util/get_hwires.py:284:16: C0206: Consider iterating with .items() (consider-using-dict-items)
spydrnet/util/get_hwires.py:273:4: R1702: Too many nested blocks (6/5) (too-many-nested-blocks)
spydrnet/util/get_hwires.py:129:0: R0912: Too many branches (60/12) (too-many-branches)
spydrnet/util/get_hwires.py:129:0: R0915: Too many statements (125/50) (too-many-statements)
spydrnet/util/get_hwires.py:273:4: R1702: Too many nested blocks (7/5) (too-many-nested-blocks)
spydrnet/util/get_hwires.py:293:0: R0914: Too many local variables (18/15) (too-many-locals)
spydrnet/util/get_hwires.py:319:40: C0209: Formatting a regular string which could be a f-string (consider-using-f-string)
spydrnet/util/get_hwires.py:296:4: R1702: Too many nested blocks (7/5) (too-many-nested-blocks)
spydrnet/util/get_hwires.py:293:0: R0912: Too many branches (13/12) (too-many-branches)
spydrnet/util/get_hwires.py:296:4: R1702: Too many nested blocks (6/5) (too-many-nested-blocks)
spydrnet/util/get_hwires.py:359:0: R1710: Either all return statements in a function should return an expression, or none of them should. (inconsistent-return-statements)
spydrnet/util/get_hwires.py:371:0: R1710: Either all return statements in a function should return an expression, or none of them should. (inconsistent-return-statements)
************* Module spydrnet.util.get_instances
spydrnet/util/get_instances.py:1:0: C0114: Missing module docstring (missing-module-docstring)
spydrnet/util/get_instances.py:97:12: C0209: Formatting a regular string which could be a f-string (consider-using-f-string)
spydrnet/util/get_instances.py:139:0: R0913: Too many arguments (8/5) (too-many-arguments)
spydrnet/util/get_instances.py:151:0: R0913: Too many arguments (7/5) (too-many-arguments)
spydrnet/util/get_instances.py:151:0: R0914: Too many local variables (27/15) (too-many-locals)
spydrnet/util/get_instances.py:156:4: R1702: Too many nested blocks (8/5) (too-many-nested-blocks)
spydrnet/util/get_instances.py:156:4: R1702: Too many nested blocks (6/5) (too-many-nested-blocks)
spydrnet/util/get_instances.py:156:4: R1702: Too many nested blocks (6/5) (too-many-nested-blocks)
spydrnet/util/get_instances.py:151:0: R0912: Too many branches (51/12) (too-many-branches)
spydrnet/util/get_instances.py:151:0: R0915: Too many statements (91/50) (too-many-statements)
************* Module spydrnet.util.selection
spydrnet/util/selection.py:1:0: C0114: Missing module docstring (missing-module-docstring)
spydrnet/util/selection.py:4:0: C0115: Missing class docstring (missing-class-docstring)
************* Module spydrnet.util
spydrnet/util/__init__.py:1:0: C0114: Missing module docstring (missing-module-docstring)
************* Module spydrnet.util.get_ports
spydrnet/util/get_ports.py:1:0: C0114: Missing module docstring (missing-module-docstring)
spydrnet/util/get_ports.py:96:0: R0913: Too many arguments (6/5) (too-many-arguments)
spydrnet/util/get_ports.py:103:0: R0914: Too many local variables (21/15) (too-many-locals)
spydrnet/util/get_ports.py:106:4: R1702: Too many nested blocks (6/5) (too-many-nested-blocks)
spydrnet/util/get_ports.py:172:16: C0206: Consider iterating with .items() (consider-using-dict-items)
spydrnet/util/get_ports.py:152:4: R1702: Too many nested blocks (6/5) (too-many-nested-blocks)
spydrnet/util/get_ports.py:103:0: R0912: Too many branches (36/12) (too-many-branches)
spydrnet/util/get_ports.py:103:0: R0915: Too many statements (63/50) (too-many-statements)
************* Module spydrnet.util.get_wires
spydrnet/util/get_wires.py:1:0: C0114: Missing module docstring (missing-module-docstring)
spydrnet/util/get_wires.py:60:12: C0209: Formatting a regular string which could be a f-string (consider-using-f-string)
spydrnet/util/get_wires.py:89:0: R0914: Too many local variables (19/15) (too-many-locals)
spydrnet/util/get_wires.py:92:4: R1702: Too many nested blocks (6/5) (too-many-nested-blocks)
spydrnet/util/get_wires.py:92:4: R1702: Too many nested blocks (7/5) (too-many-nested-blocks)
spydrnet/util/get_wires.py:92:4: R1702: Too many nested blocks (11/5) (too-many-nested-blocks)
spydrnet/util/get_wires.py:157:4: R1702: Too many nested blocks (6/5) (too-many-nested-blocks)
spydrnet/util/get_wires.py:157:4: R1702: Too many nested blocks (8/5) (too-many-nested-blocks)
spydrnet/util/get_wires.py:157:4: R1702: Too many nested blocks (10/5) (too-many-nested-blocks)
spydrnet/util/get_wires.py:157:4: R1702: Too many nested blocks (6/5) (too-many-nested-blocks)
spydrnet/util/get_wires.py:89:0: R0912: Too many branches (68/12) (too-many-branches)
spydrnet/util/get_wires.py:89:0: R0915: Too many statements (114/50) (too-many-statements)
spydrnet/util/get_wires.py:157:4: R1702: Too many nested blocks (8/5) (too-many-nested-blocks)
************* Module spydrnet.util.get_hinstances
spydrnet/util/get_hinstances.py:1:0: C0114: Missing module docstring (missing-module-docstring)
spydrnet/util/get_hinstances.py:103:0: R0913: Too many arguments (6/5) (too-many-arguments)
spydrnet/util/get_hinstances.py:111:0: R0914: Too many local variables (23/15) (too-many-locals)
spydrnet/util/get_hinstances.py:188:16: C0206: Consider iterating with .items() (consider-using-dict-items)
spydrnet/util/get_hinstances.py:177:4: R1702: Too many nested blocks (6/5) (too-many-nested-blocks)
spydrnet/util/get_hinstances.py:111:0: R0912: Too many branches (39/12) (too-many-branches)
spydrnet/util/get_hinstances.py:111:0: R0915: Too many statements (74/50) (too-many-statements)
spydrnet/util/get_hinstances.py:177:4: R1702: Too many nested blocks (7/5) (too-many-nested-blocks)
spydrnet/util/get_hinstances.py:201:4: R1702: Too many nested blocks (6/5) (too-many-nested-blocks)
************* Module spydrnet.util.get_definitions
spydrnet/util/get_definitions.py:1:0: C0114: Missing module docstring (missing-module-docstring)
spydrnet/util/get_definitions.py:95:12: C0209: Formatting a regular string which could be a f-string (consider-using-f-string)
spydrnet/util/get_definitions.py:137:0: R0913: Too many arguments (8/5) (too-many-arguments)
spydrnet/util/get_definitions.py:149:0: R0913: Too many arguments (7/5) (too-many-arguments)
spydrnet/util/get_definitions.py:149:0: R0914: Too many local variables (23/15) (too-many-locals)
spydrnet/util/get_definitions.py:154:4: R1702: Too many nested blocks (7/5) (too-many-nested-blocks)
spydrnet/util/get_definitions.py:154:4: R1702: Too many nested blocks (7/5) (too-many-nested-blocks)
spydrnet/util/get_definitions.py:154:4: R1702: Too many nested blocks (7/5) (too-many-nested-blocks)
spydrnet/util/get_definitions.py:154:4: R1702: Too many nested blocks (6/5) (too-many-nested-blocks)
spydrnet/util/get_definitions.py:154:4: R1702: Too many nested blocks (6/5) (too-many-nested-blocks)
spydrnet/util/get_definitions.py:251:16: C0206: Consider iterating with .items() (consider-using-dict-items)
spydrnet/util/get_definitions.py:232:4: R1702: Too many nested blocks (6/5) (too-many-nested-blocks)
spydrnet/util/get_definitions.py:149:0: R0912: Too many branches (56/12) (too-many-branches)
spydrnet/util/get_definitions.py:149:0: R0915: Too many statements (94/50) (too-many-statements)
************* Module spydrnet.util.get_netlists
spydrnet/util/get_netlists.py:1:0: C0114: Missing module docstring (missing-module-docstring)
spydrnet/util/get_netlists.py:95:0: R0913: Too many arguments (6/5) (too-many-arguments)
spydrnet/util/get_netlists.py:102:0: R0914: Too many local variables (22/15) (too-many-locals)
spydrnet/util/get_netlists.py:102:0: R0912: Too many branches (31/12) (too-many-branches)
spydrnet/util/get_netlists.py:102:0: R0915: Too many statements (62/50) (too-many-statements)
************* Module spydrnet.util.get_pins
spydrnet/util/get_pins.py:1:0: C0114: Missing module docstring (missing-module-docstring)
spydrnet/util/get_pins.py:56:12: C0209: Formatting a regular string which could be a f-string (consider-using-f-string)
spydrnet/util/get_pins.py:86:4: R1702: Too many nested blocks (7/5) (too-many-nested-blocks)
spydrnet/util/get_pins.py:84:0: R0912: Too many branches (29/12) (too-many-branches)
spydrnet/util/get_pins.py:84:0: R0915: Too many statements (54/50) (too-many-statements)
************* Module spydrnet.global_state.global_callback
spydrnet/global_state/global_callback.py:274:5: W0511: TODO: look into inlining this function perhaps, may not be necessary since it won't be called (fixme)
spydrnet/global_state/global_callback.py:389:5: W0511: TODO: look into inlining this function perhaps, may not be necessary since it won't be called (fixme)
spydrnet/global_state/global_callback.py:1:0: C0114: Missing module docstring (missing-module-docstring)
spydrnet/global_state/global_callback.py:165:0: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/global_state/global_callback.py:169:0: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/global_state/global_callback.py:173:0: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/global_state/global_callback.py:177:0: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/global_state/global_callback.py:181:0: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/global_state/global_callback.py:185:0: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/global_state/global_callback.py:189:0: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/global_state/global_callback.py:193:0: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/global_state/global_callback.py:197:0: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/global_state/global_callback.py:201:0: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/global_state/global_callback.py:205:0: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/global_state/global_callback.py:209:0: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/global_state/global_callback.py:213:0: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/global_state/global_callback.py:217:0: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/global_state/global_callback.py:221:0: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/global_state/global_callback.py:225:0: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/global_state/global_callback.py:229:0: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/global_state/global_callback.py:233:0: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/global_state/global_callback.py:237:0: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/global_state/global_callback.py:241:0: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/global_state/global_callback.py:245:0: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/global_state/global_callback.py:249:0: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/global_state/global_callback.py:253:0: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/global_state/global_callback.py:257:0: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/global_state/global_callback.py:261:0: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/global_state/global_callback.py:265:0: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/global_state/global_callback.py:269:0: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/global_state/global_callback.py:280:0: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/global_state/global_callback.py:284:0: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/global_state/global_callback.py:288:0: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/global_state/global_callback.py:292:0: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/global_state/global_callback.py:296:0: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/global_state/global_callback.py:300:0: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/global_state/global_callback.py:304:0: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/global_state/global_callback.py:308:0: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/global_state/global_callback.py:312:0: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/global_state/global_callback.py:316:0: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/global_state/global_callback.py:320:0: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/global_state/global_callback.py:324:0: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/global_state/global_callback.py:328:0: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/global_state/global_callback.py:332:0: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/global_state/global_callback.py:336:0: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/global_state/global_callback.py:340:0: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/global_state/global_callback.py:344:0: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/global_state/global_callback.py:348:0: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/global_state/global_callback.py:352:0: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/global_state/global_callback.py:356:0: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/global_state/global_callback.py:360:0: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/global_state/global_callback.py:364:0: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/global_state/global_callback.py:368:0: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/global_state/global_callback.py:372:0: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/global_state/global_callback.py:376:0: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/global_state/global_callback.py:380:0: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/global_state/global_callback.py:384:0: C0116: Missing function or method docstring (missing-function-docstring)
************* Module spydrnet.global_state.global_service
spydrnet/global_state/global_service.py:1:0: C0114: Missing module docstring (missing-module-docstring)
spydrnet/global_state/global_service.py:4:0: C0103: Constant name "_registered_hierarchical_lookup" doesn't conform to UPPER_CASE naming style (invalid-name)
spydrnet/global_state/global_service.py:7:0: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/global_state/global_service.py:8:4: R1720: Unnecessary "else" after "raise", remove the "else" and de-indent the code inside it (no-else-raise)
spydrnet/global_state/global_service.py:16:0: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/global_state/global_service.py:21:0: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/global_state/global_service.py:22:4: R1705: Unnecessary "else" after "return", remove the "else" and de-indent the code inside it (no-else-return)
spydrnet/global_state/global_service.py:21:0: R0911: Too many return statements (7/6) (too-many-return-statements)
spydrnet/global_state/global_service.py:21:0: R0912: Too many branches (19/12) (too-many-branches)
************* Module spydrnet.ir.netlist
spydrnet/ir/netlist.py:131:9: W0511: TODO: should We have a DRC that makes sure the instance is of a definition contained in (fixme)
spydrnet/ir/netlist.py:162:9: W0511: TODO: should We have a DRC that makes sure the instance is of a definition contained in (fixme)
spydrnet/ir/netlist.py:1:0: C0114: Missing module docstring (missing-module-docstring)
spydrnet/ir/netlist.py:72:8: C0415: Import outside toplevel (spydrnet.composers.compose) (import-outside-toplevel)
spydrnet/ir/netlist.py:126:12: R1701: Consider merging these isinstance calls to isinstance(instance, (Definition, Instance)) (consider-merging-isinstance)
spydrnet/ir/netlist.py:130:8: W0212: Access to a protected member _call_netlist_top_instance of a client class (protected-access)
spydrnet/ir/netlist.py:157:12: R1701: Consider merging these isinstance calls to isinstance(instance, (Definition, Instance)) (consider-merging-isinstance)
spydrnet/ir/netlist.py:161:8: W0212: Access to a protected member _call_netlist_top_instance of a client class (protected-access)
spydrnet/ir/netlist.py:204:8: W0212: Access to a protected member _call_netlist_add_library of a client class (protected-access)
spydrnet/ir/netlist.py:209:8: W0212: Access to a protected member _netlist of a client class (protected-access)
spydrnet/ir/netlist.py:252:8: W0212: Access to a protected member _call_netlist_remove_library of a client class (protected-access)
spydrnet/ir/netlist.py:253:8: W0212: Access to a protected member _netlist of a client class (protected-access)
spydrnet/ir/netlist.py:258:25: W0212: Access to a protected member _definitions of a client class (protected-access)
spydrnet/ir/netlist.py:260:27: W0212: Access to a protected member _references of a client class (protected-access)
spydrnet/ir/netlist.py:263:16: W0212: Access to a protected member _references of a client class (protected-access)
spydrnet/ir/netlist.py:273:8: C0415: Import outside toplevel (spydrnet.ir.Netlist) (import-outside-toplevel)
spydrnet/ir/netlist.py:275:8: C0103: Variable name "c" doesn't conform to snake_case naming style (invalid-name)
spydrnet/ir/netlist.py:277:8: W0212: Access to a protected member _data of a client class (protected-access)
spydrnet/ir/netlist.py:281:33: W0212: Access to a protected member _clone of a client class (protected-access)
spydrnet/ir/netlist.py:282:8: W0212: Access to a protected member _libraries of a client class (protected-access)
spydrnet/ir/netlist.py:285:12: W0212: Access to a protected member _top_instance of a client class (protected-access)
spydrnet/ir/netlist.py:288:16: W0212: Access to a protected member _top_instance of a client class (protected-access)
spydrnet/ir/netlist.py:290:26: W0212: Access to a protected member _clone of a client class (protected-access)
spydrnet/ir/netlist.py:291:16: W0212: Access to a protected member _clone_rip_and_replace_in_definition of a client class (protected-access)
spydrnet/ir/netlist.py:292:16: W0212: Access to a protected member _clone_rip_and_replace_in_library of a client class (protected-access)
spydrnet/ir/netlist.py:293:16: W0212: Access to a protected member _top_instance of a client class (protected-access)
spydrnet/ir/netlist.py:295:23: W0212: Access to a protected member _libraries of a client class (protected-access)
spydrnet/ir/netlist.py:296:12: W0212: Access to a protected member _netlist of a client class (protected-access)
spydrnet/ir/netlist.py:297:12: W0212: Access to a protected member _clone_rip_and_replace of a client class (protected-access)
spydrnet/ir/netlist.py:307:8: C0103: Variable name "c" doesn't conform to snake_case naming style (invalid-name)
spydrnet/ir/netlist.py:308:8: W0212: Access to a protected member _clone_rip of a client class (protected-access)
spydrnet/ir/netlist.py:329:12: R1724: Unnecessary "else" after "continue", remove the "else" and de-indent the code inside it (no-else-continue)
************* Module spydrnet.ir.innerpin
spydrnet/ir/innerpin.py:1:0: C0114: Missing module docstring (missing-module-docstring)
spydrnet/ir/innerpin.py:46:8: C0415: Import outside toplevel (spydrnet.ir.InnerPin) (import-outside-toplevel)
spydrnet/ir/innerpin.py:48:8: C0103: Variable name "c" doesn't conform to snake_case naming style (invalid-name)
spydrnet/ir/innerpin.py:50:8: W0212: Access to a protected member _wire of a client class (protected-access)
spydrnet/ir/innerpin.py:51:8: W0212: Access to a protected member _port of a client class (protected-access)
spydrnet/ir/innerpin.py:64:8: C0103: Variable name "c" doesn't conform to snake_case naming style (invalid-name)
spydrnet/ir/innerpin.py:65:8: W0212: Access to a protected member _clone_rip of a client class (protected-access)
************* Module spydrnet.ir.element
spydrnet/ir/element.py:1:0: C0114: Missing module docstring (missing-module-docstring)
************* Module spydrnet.ir.bundle
spydrnet/ir/bundle.py:1:0: C0114: Missing module docstring (missing-module-docstring)
************* Module spydrnet.ir.instance
spydrnet/ir/instance.py:1:0: C0114: Missing module docstring (missing-module-docstring)
spydrnet/ir/instance.py:57:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/ir/instance.py:76:8: W0212: Access to a protected member _call_instance_reference of a client class (protected-access)
spydrnet/ir/instance.py:83:20: W0212: Access to a protected member _instance of a client class (protected-access)
spydrnet/ir/instance.py:84:20: W0212: Access to a protected member _inner_pin of a client class (protected-access)
spydrnet/ir/instance.py:87:16: W0212: Access to a protected member _references of a client class (protected-access)
spydrnet/ir/instance.py:95:16: W0212: Access to a protected member _references of a client class (protected-access)
spydrnet/ir/instance.py:99:24: W0212: Access to a protected member _inner_pin of a client class (protected-access)
spydrnet/ir/instance.py:105:12: W0212: Access to a protected member _references of a client class (protected-access)
spydrnet/ir/instance.py:113:8: C0415: Import outside toplevel (spydrnet.util.get_ports.get_ports) (import-outside-toplevel)
spydrnet/ir/instance.py:129:12: C0103: Variable name "op" doesn't conform to snake_case naming style (invalid-name)
spydrnet/ir/instance.py:130:12: W0212: Access to a protected member _clone_rip_and_replace of a client class (protected-access)
spydrnet/ir/instance.py:139:12: C0103: Variable name "ip" doesn't conform to snake_case naming style (invalid-name)
spydrnet/ir/instance.py:139:16: C0103: Variable name "op" doesn't conform to snake_case naming style (invalid-name)
spydrnet/ir/instance.py:149:12: C0103: Variable name "op" doesn't conform to snake_case naming style (invalid-name)
spydrnet/ir/instance.py:150:12: W0212: Access to a protected member _wire of a client class (protected-access)
spydrnet/ir/instance.py:151:8: W0212: Access to a protected member _references of a client class (protected-access)
spydrnet/ir/instance.py:161:8: C0415: Import outside toplevel (spydrnet.ir.Instance) (import-outside-toplevel)
spydrnet/ir/instance.py:163:8: C0103: Variable name "c" doesn't conform to snake_case naming style (invalid-name)
spydrnet/ir/instance.py:165:8: W0212: Access to a protected member _parent of a client class (protected-access)
spydrnet/ir/instance.py:167:28: W0212: Access to a protected member _clone of a client class (protected-access)
spydrnet/ir/instance.py:168:12: W0212: Access to a protected member _instance of a client class (protected-access)
spydrnet/ir/instance.py:169:12: W0212: Access to a protected member _pins of a client class (protected-access)
spydrnet/ir/instance.py:170:8: W0212: Access to a protected member _reference of a client class (protected-access)
spydrnet/ir/instance.py:171:8: W0212: Access to a protected member _data of a client class (protected-access)
spydrnet/ir/instance.py:188:8: C0103: Variable name "c" doesn't conform to snake_case naming style (invalid-name)
spydrnet/ir/instance.py:189:8: W0212: Access to a protected member _clone_rip of a client class (protected-access)
spydrnet/ir/instance.py:198:8: R1705: Unnecessary "elif" after "return", remove the leading "el" from "elif" (no-else-return)
spydrnet/ir/instance.py:200:17: W0212: Access to a protected member _children of a client class (protected-access)
spydrnet/ir/instance.py:200:55: W0212: Access to a protected member _cables of a client class (protected-access)
spydrnet/ir/instance.py:208:8: R1703: The if statement can be replaced with 'return bool(test)' (simplifiable-if-statement)
spydrnet/ir/instance.py:208:8: R1705: Unnecessary "else" after "return", remove the "else" and de-indent the code inside it (no-else-return)
spydrnet/ir/instance.py:239:4: C0116: Missing function or method docstring (missing-function-docstring)
************* Module spydrnet.ir.outerpin
spydrnet/ir/outerpin.py:1:0: C0114: Missing module docstring (missing-module-docstring)
spydrnet/ir/outerpin.py:22:8: C0415: Import outside toplevel (spydrnet.ir.OuterPin) (import-outside-toplevel)
spydrnet/ir/outerpin.py:87:8: C0415: Import outside toplevel (spydrnet.ir.OuterPin) (import-outside-toplevel)
spydrnet/ir/outerpin.py:89:8: C0103: Variable name "c" doesn't conform to snake_case naming style (invalid-name)
spydrnet/ir/outerpin.py:91:8: W0212: Access to a protected member _instance of a client class (protected-access)
spydrnet/ir/outerpin.py:92:8: W0212: Access to a protected member _inner_pin of a client class (protected-access)
spydrnet/ir/outerpin.py:93:8: W0212: Access to a protected member _wire of a client class (protected-access)
spydrnet/ir/outerpin.py:105:8: C0103: Variable name "c" doesn't conform to snake_case naming style (invalid-name)
spydrnet/ir/outerpin.py:106:8: W0212: Access to a protected member _clone_rip of a client class (protected-access)
spydrnet/ir/outerpin.py:109:4: C0116: Missing function or method docstring (missing-function-docstring)
************* Module spydrnet.ir.library
spydrnet/ir/library.py:1:0: C0114: Missing module docstring (missing-module-docstring)
spydrnet/ir/library.py:113:8: W0212: Access to a protected member _call_library_add_definition of a client class (protected-access)
spydrnet/ir/library.py:118:8: W0212: Access to a protected member _library of a client class (protected-access)
spydrnet/ir/library.py:161:8: W0212: Access to a protected member _call_library_remove_definition of a client class (protected-access)
spydrnet/ir/library.py:162:8: W0212: Access to a protected member _library of a client class (protected-access)
spydrnet/ir/library.py:167:8: W0107: Unnecessary pass statement (unnecessary-pass)
spydrnet/ir/library.py:170:12: W0212: Access to a protected member _clone_rip_and_replace of a client class (protected-access)
spydrnet/ir/library.py:179:23: W0212: Access to a protected member _references of a client class (protected-access)
spydrnet/ir/library.py:182:28: W0212: Access to a protected member _children of a client class (protected-access)
spydrnet/ir/library.py:183:16: W0212: Access to a protected member _references of a client class (protected-access)
spydrnet/ir/library.py:183:16: W0212: Access to a protected member _reference of a client class (protected-access)
spydrnet/ir/library.py:185:12: W0212: Access to a protected member _references of a client class (protected-access)
spydrnet/ir/library.py:196:8: C0103: Variable name "c" doesn't conform to snake_case naming style (invalid-name)
spydrnet/ir/library.py:198:8: W0212: Access to a protected member _netlist of a client class (protected-access)
spydrnet/ir/library.py:199:8: W0212: Access to a protected member _data of a client class (protected-access)
spydrnet/ir/library.py:203:35: W0212: Access to a protected member _clone of a client class (protected-access)
spydrnet/ir/library.py:204:8: W0212: Access to a protected member _definitions of a client class (protected-access)
spydrnet/ir/library.py:206:26: W0212: Access to a protected member _definitions of a client class (protected-access)
spydrnet/ir/library.py:207:12: W0212: Access to a protected member _library of a client class (protected-access)
spydrnet/ir/library.py:208:12: W0212: Access to a protected member _clone_rip_and_replace of a client class (protected-access)
spydrnet/ir/library.py:226:8: C0103: Variable name "c" doesn't conform to snake_case naming style (invalid-name)
spydrnet/ir/library.py:227:8: W0212: Access to a protected member _clone_rip of a client class (protected-access)
************* Module spydrnet.ir.cable
spydrnet/ir/cable.py:1:0: C0114: Missing module docstring (missing-module-docstring)
spydrnet/ir/cable.py:19:4: R0913: Too many arguments (6/5) (too-many-arguments)
spydrnet/ir/cable.py:120:8: W0212: Access to a protected member _call_cable_add_wire of a client class (protected-access)
spydrnet/ir/cable.py:125:8: W0212: Access to a protected member _cable of a client class (protected-access)
spydrnet/ir/cable.py:161:8: W0212: Access to a protected member _call_cable_remove_wire of a client class (protected-access)
spydrnet/ir/cable.py:162:8: W0212: Access to a protected member _cable of a client class (protected-access)
spydrnet/ir/cable.py:167:12: C0103: Variable name "w" doesn't conform to snake_case naming style (invalid-name)
spydrnet/ir/cable.py:168:12: W0212: Access to a protected member _clone_rip_and_replace of a client class (protected-access)
spydrnet/ir/cable.py:173:12: C0103: Variable name "w" doesn't conform to snake_case naming style (invalid-name)
spydrnet/ir/cable.py:174:12: W0212: Access to a protected member _clone_rip of a client class (protected-access)
spydrnet/ir/cable.py:175:12: W0212: Access to a protected member _cable of a client class (protected-access)
spydrnet/ir/cable.py:184:8: C0415: Import outside toplevel (spydrnet.ir.Cable) (import-outside-toplevel)
spydrnet/ir/cable.py:186:8: C0103: Variable name "c" doesn't conform to snake_case naming style (invalid-name)
spydrnet/ir/cable.py:189:12: C0103: Variable name "w" doesn't conform to snake_case naming style (invalid-name)
spydrnet/ir/cable.py:190:29: W0212: Access to a protected member _clone of a client class (protected-access)
spydrnet/ir/cable.py:191:8: W0212: Access to a protected member _wires of a client class (protected-access)
spydrnet/ir/cable.py:192:12: C0103: Variable name "w" doesn't conform to snake_case naming style (invalid-name)
spydrnet/ir/cable.py:192:17: W0212: Access to a protected member _wires of a client class (protected-access)
spydrnet/ir/cable.py:193:12: W0212: Access to a protected member _cable of a client class (protected-access)
spydrnet/ir/cable.py:194:8: W0212: Access to a protected member _definition of a client class (protected-access)
spydrnet/ir/cable.py:195:8: W0212: Access to a protected member _is_downto of a client class (protected-access)
spydrnet/ir/cable.py:196:8: W0212: Access to a protected member _is_scalar of a client class (protected-access)
spydrnet/ir/cable.py:197:8: W0212: Access to a protected member _lower_index of a client class (protected-access)
spydrnet/ir/cable.py:198:8: W0212: Access to a protected member _data of a client class (protected-access)
spydrnet/ir/cable.py:211:8: C0103: Variable name "c" doesn't conform to snake_case naming style (invalid-name)
spydrnet/ir/cable.py:212:8: W0212: Access to a protected member _clone_rip of a client class (protected-access)
************* Module spydrnet.ir.definition
spydrnet/ir/definition.py:1:0: C0114: Missing module docstring (missing-module-docstring)
spydrnet/ir/definition.py:149:4: R0913: Too many arguments (8/5) (too-many-arguments)
spydrnet/ir/definition.py:195:8: W0212: Access to a protected member _call_definition_add_port of a client class (protected-access)
spydrnet/ir/definition.py:200:8: W0212: Access to a protected member _definition of a client class (protected-access)
spydrnet/ir/definition.py:203:16: W0212: Access to a protected member _pins of a client class (protected-access)
spydrnet/ir/definition.py:248:8: W0212: Access to a protected member _call_definition_remove_port of a client class (protected-access)
spydrnet/ir/definition.py:255:20: W0212: Access to a protected member _pins of a client class (protected-access)
spydrnet/ir/definition.py:256:16: W0212: Access to a protected member _instance of a client class (protected-access)
spydrnet/ir/definition.py:257:16: W0212: Access to a protected member _inner_pin of a client class (protected-access)
spydrnet/ir/definition.py:258:8: W0212: Access to a protected member _definition of a client class (protected-access)
spydrnet/ir/definition.py:312:8: W0212: Access to a protected member _call_definition_add_child of a client class (protected-access)
spydrnet/ir/definition.py:317:8: W0212: Access to a protected member _parent of a client class (protected-access)
spydrnet/ir/definition.py:362:8: W0212: Access to a protected member _call_definition_remove_child of a client class (protected-access)
spydrnet/ir/definition.py:363:8: W0212: Access to a protected member _parent of a client class (protected-access)
spydrnet/ir/definition.py:365:4: R0913: Too many arguments (7/5) (too-many-arguments)
spydrnet/ir/definition.py:410:8: W0212: Access to a protected member _call_definition_add_cable of a client class (protected-access)
spydrnet/ir/definition.py:415:8: W0212: Access to a protected member _definition of a client class (protected-access)
spydrnet/ir/definition.py:461:8: W0212: Access to a protected member _call_definition_remove_cable of a client class (protected-access)
spydrnet/ir/definition.py:462:8: W0212: Access to a protected member _definition of a client class (protected-access)
spydrnet/ir/definition.py:485:16: W0212: Access to a protected member _reference of a client class (protected-access)
spydrnet/ir/definition.py:486:16: W0212: Access to a protected member _clone_rip_and_replace_in_library of a client class (protected-access)
spydrnet/ir/definition.py:494:12: W0212: Access to a protected member _references of a client class (protected-access)
spydrnet/ir/definition.py:494:12: W0212: Access to a protected member _reference of a client class (protected-access)
spydrnet/ir/definition.py:505:8: C0415: Import outside toplevel (spydrnet.ir.Definition) (import-outside-toplevel)
spydrnet/ir/definition.py:507:8: C0103: Variable name "c" doesn't conform to snake_case naming style (invalid-name)
spydrnet/ir/definition.py:509:8: W0212: Access to a protected member _data of a client class (protected-access)
spydrnet/ir/definition.py:510:8: W0212: Access to a protected member _library of a client class (protected-access)
spydrnet/ir/definition.py:513:12: C0103: Variable name "p" doesn't conform to snake_case naming style (invalid-name)
spydrnet/ir/definition.py:514:29: W0212: Access to a protected member _clone of a client class (protected-access)
spydrnet/ir/definition.py:515:8: W0212: Access to a protected member _ports of a client class (protected-access)
spydrnet/ir/definition.py:518:12: C0103: Variable name "ca" doesn't conform to snake_case naming style (invalid-name)
spydrnet/ir/definition.py:519:30: W0212: Access to a protected member _clone of a client class (protected-access)
spydrnet/ir/definition.py:520:8: W0212: Access to a protected member _cables of a client class (protected-access)
spydrnet/ir/definition.py:523:12: C0103: Variable name "ch" doesn't conform to snake_case naming style (invalid-name)
spydrnet/ir/definition.py:524:32: W0212: Access to a protected member _clone of a client class (protected-access)
spydrnet/ir/definition.py:525:8: W0212: Access to a protected member _children of a client class (protected-access)
spydrnet/ir/definition.py:527:8: W0212: Access to a protected member _references of a client class (protected-access)
spydrnet/ir/definition.py:529:20: W0212: Access to a protected member _ports of a client class (protected-access)
spydrnet/ir/definition.py:530:12: W0212: Access to a protected member _definition of a client class (protected-access)
spydrnet/ir/definition.py:531:12: W0212: Access to a protected member _clone_rip_and_replace of a client class (protected-access)
spydrnet/ir/definition.py:533:21: W0212: Access to a protected member _cables of a client class (protected-access)
spydrnet/ir/definition.py:534:12: W0212: Access to a protected member _definition of a client class (protected-access)
spydrnet/ir/definition.py:535:12: W0212: Access to a protected member _clone_rip_and_replace of a client class (protected-access)
spydrnet/ir/definition.py:537:24: W0212: Access to a protected member _children of a client class (protected-access)
spydrnet/ir/definition.py:538:12: W0212: Access to a protected member _parent of a client class (protected-access)
spydrnet/ir/definition.py:539:12: W0212: Access to a protected member _clone_rip_and_replace_in_definition of a client class (protected-access)
spydrnet/ir/definition.py:556:8: C0103: Variable name "c" doesn't conform to snake_case naming style (invalid-name)
spydrnet/ir/definition.py:557:8: W0212: Access to a protected member _clone_rip of a client class (protected-access)
************* Module spydrnet.ir.pin
spydrnet/ir/pin.py:1:0: C0114: Missing module docstring (missing-module-docstring)
************* Module spydrnet.ir.first_class_element
spydrnet/ir/first_class_element.py:1:0: C0114: Missing module docstring (missing-module-docstring)
spydrnet/ir/first_class_element.py:96:8: W0212: Access to a protected member _call_dictionary_pop of a client class (protected-access)
************* Module spydrnet.ir
spydrnet/ir/__init__.py:1:0: C0114: Missing module docstring (missing-module-docstring)
spydrnet/ir/__init__.py:44:40: C0209: Formatting a regular string which could be a f-string (consider-using-f-string)
************* Module spydrnet.ir.port
spydrnet/ir/port.py:1:0: C0114: Missing module docstring (missing-module-docstring)
spydrnet/ir/port.py:35:4: R0913: Too many arguments (7/5) (too-many-arguments)
spydrnet/ir/port.py:122:16: C0209: Formatting a regular string which could be a f-string (consider-using-f-string)
spydrnet/ir/port.py:169:8: W0404: Reimport 'InnerPin' (imported line 4) (reimported)
spydrnet/ir/port.py:169:8: C0415: Import outside toplevel (spydrnet.ir.InnerPin) (import-outside-toplevel)
spydrnet/ir/port.py:175:16: W0212: Access to a protected member _pins of a client class (protected-access)
spydrnet/ir/port.py:191:8: W0212: Access to a protected member _call_port_add_pin of a client class (protected-access)
spydrnet/ir/port.py:196:8: W0212: Access to a protected member _port of a client class (protected-access)
spydrnet/ir/port.py:239:8: W0212: Access to a protected member _call_port_remove_pin of a client class (protected-access)
spydrnet/ir/port.py:246:20: W0212: Access to a protected member _pins of a client class (protected-access)
spydrnet/ir/port.py:247:16: W0212: Access to a protected member _instance of a client class (protected-access)
spydrnet/ir/port.py:248:16: W0212: Access to a protected member _inner_pin of a client class (protected-access)
spydrnet/ir/port.py:249:8: W0212: Access to a protected member _port of a client class (protected-access)
spydrnet/ir/port.py:254:12: C0103: Variable name "p" doesn't conform to snake_case naming style (invalid-name)
spydrnet/ir/port.py:255:12: W0212: Access to a protected member _clone_rip_and_replace of a client class (protected-access)
spydrnet/ir/port.py:261:12: C0103: Variable name "p" doesn't conform to snake_case naming style (invalid-name)
spydrnet/ir/port.py:262:12: W0212: Access to a protected member _clone_rip of a client class (protected-access)
spydrnet/ir/port.py:273:8: C0415: Import outside toplevel (spydrnet.ir.Port) (import-outside-toplevel)
spydrnet/ir/port.py:275:8: C0103: Variable name "c" doesn't conform to snake_case naming style (invalid-name)
spydrnet/ir/port.py:277:8: W0212: Access to a protected member _direction of a client class (protected-access)
spydrnet/ir/port.py:279:12: C0103: Variable name "p" doesn't conform to snake_case naming style (invalid-name)
spydrnet/ir/port.py:280:28: W0212: Access to a protected member _clone of a client class (protected-access)
spydrnet/ir/port.py:281:8: W0212: Access to a protected member _pins of a client class (protected-access)
spydrnet/ir/port.py:282:8: W0212: Access to a protected member _definition of a client class (protected-access)
spydrnet/ir/port.py:283:8: W0212: Access to a protected member _is_downto of a client class (protected-access)
spydrnet/ir/port.py:284:8: W0212: Access to a protected member _is_scalar of a client class (protected-access)
spydrnet/ir/port.py:285:8: W0212: Access to a protected member _lower_index of a client class (protected-access)
spydrnet/ir/port.py:286:12: C0103: Variable name "p" doesn't conform to snake_case naming style (invalid-name)
spydrnet/ir/port.py:286:17: W0212: Access to a protected member _pins of a client class (protected-access)
spydrnet/ir/port.py:287:12: W0212: Access to a protected member _port of a client class (protected-access)
spydrnet/ir/port.py:288:8: W0212: Access to a protected member _data of a client class (protected-access)
spydrnet/ir/port.py:302:8: C0103: Variable name "c" doesn't conform to snake_case naming style (invalid-name)
spydrnet/ir/port.py:303:8: W0212: Access to a protected member _clone_rip of a client class (protected-access)
************* Module spydrnet.ir.wire
spydrnet/ir/wire.py:1:0: C0114: Missing module docstring (missing-module-docstring)
spydrnet/ir/wire.py:48:8: W0212: Access to a protected member _call_wire_connect_pin of a client class (protected-access)
spydrnet/ir/wire.py:59:12: W0212: Access to a protected member _wire of a client class (protected-access)
spydrnet/ir/wire.py:67:8: W0212: Access to a protected member _wire of a client class (protected-access)
spydrnet/ir/wire.py:136:8: W0212: Access to a protected member _call_wire_disconnect_pin of a client class (protected-access)
spydrnet/ir/wire.py:137:8: W0212: Access to a protected member _wire of a client class (protected-access)
spydrnet/ir/wire.py:143:12: C0103: Variable name "p" doesn't conform to snake_case naming style (invalid-name)
spydrnet/ir/wire.py:147:8: W0107: Unnecessary pass statement (unnecessary-pass)
spydrnet/ir/wire.py:154:8: W0107: Unnecessary pass statement (unnecessary-pass)
spydrnet/ir/wire.py:164:8: C0415: Import outside toplevel (spydrnet.ir.Wire) (import-outside-toplevel)
spydrnet/ir/wire.py:166:8: C0103: Variable name "c" doesn't conform to snake_case naming style (invalid-name)
spydrnet/ir/wire.py:168:8: W0212: Access to a protected member _cable of a client class (protected-access)
spydrnet/ir/wire.py:170:8: W0212: Access to a protected member _pins of a client class (protected-access)
spydrnet/ir/wire.py:181:8: C0103: Variable name "c" doesn't conform to snake_case naming style (invalid-name)
spydrnet/ir/wire.py:182:8: W0212: Access to a protected member _clone_rip of a client class (protected-access)
************* Module spydrnet.ir.views.outerpinsview
spydrnet/ir/views/outerpinsview.py:1:0: C0114: Missing module docstring (missing-module-docstring)
spydrnet/ir/views/outerpinsview.py:5:0: C0115: Missing class docstring (missing-class-docstring)
spydrnet/ir/views/outerpinsview.py:6:4: W0246: Useless parent or super() delegation in method '__init__' (useless-parent-delegation)
************* Module spydrnet.ir.views.listview
spydrnet/ir/views/listview.py:1:0: C0114: Missing module docstring (missing-module-docstring)
spydrnet/ir/views/listview.py:1:0: C0115: Missing class docstring (missing-class-docstring)
spydrnet/ir/views/listview.py:54:23: C0103: Argument name "n" doesn't conform to snake_case naming style (invalid-name)
spydrnet/ir/views/listview.py:75:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/ir/views/listview.py:78:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/ir/views/listview.py:78:20: W0622: Redefining built-in 'object' (redefined-builtin)
spydrnet/ir/views/listview.py:81:4: C0116: Missing function or method docstring (missing-function-docstring)
************* Module spydrnet.ir.views.setview
spydrnet/ir/views/setview.py:1:0: C0114: Missing module docstring (missing-module-docstring)
spydrnet/ir/views/setview.py:1:0: C0115: Missing class docstring (missing-class-docstring)
spydrnet/ir/views/setview.py:73:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/ir/views/setview.py:76:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/ir/views/setview.py:79:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/ir/views/setview.py:82:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/ir/views/setview.py:85:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/ir/views/setview.py:88:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/ir/views/setview.py:91:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/ir/views/setview.py:94:4: C0116: Missing function or method docstring (missing-function-docstring)
************* Module spydrnet.ir.views.dictview
spydrnet/ir/views/dictview.py:1:0: C0114: Missing module docstring (missing-module-docstring)
spydrnet/ir/views/dictview.py:1:0: C0115: Missing class docstring (missing-class-docstring)
spydrnet/ir/views/dictview.py:38:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/ir/views/dictview.py:41:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/ir/views/dictview.py:44:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/ir/views/dictview.py:47:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/ir/views/dictview.py:50:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/ir/views/dictview.py:53:4: C0116: Missing function or method docstring (missing-function-docstring)
************* Module spydrnet.compare.compare_netlists
spydrnet/compare/compare_netlists.py:133:0: C0301: Line too long (107/100) (line-too-long)
spydrnet/compare/compare_netlists.py:1:0: C0114: Missing module docstring (missing-module-docstring)
spydrnet/compare/compare_netlists.py:5:0: C0115: Missing class docstring (missing-class-docstring)
spydrnet/compare/compare_netlists.py:13:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/compare/compare_netlists.py:16:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/compare/compare_netlists.py:37:12: R1724: Unnecessary "else" after "continue", remove the "else" and de-indent the code inside it (no-else-continue)
spydrnet/compare/compare_netlists.py:46:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/compare/compare_netlists.py:69:12: R1724: Unnecessary "else" after "continue", remove the "else" and de-indent the code inside it (no-else-continue)
spydrnet/compare/compare_netlists.py:80:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/compare/compare_netlists.py:80:4: R0914: Too many local variables (20/15) (too-many-locals)
spydrnet/compare/compare_netlists.py:100:12: R1724: Unnecessary "else" after "continue", remove the "else" and de-indent the code inside it (no-else-continue)
spydrnet/compare/compare_netlists.py:121:12: R1724: Unnecessary "else" after "continue", remove the "else" and de-indent the code inside it (no-else-continue)
spydrnet/compare/compare_netlists.py:136:12: R1724: Unnecessary "else" after "continue", remove the "else" and de-indent the code inside it (no-else-continue)
spydrnet/compare/compare_netlists.py:141:16: R1724: Unnecessary "else" after "continue", remove the "else" and de-indent the code inside it (no-else-continue)
spydrnet/compare/compare_netlists.py:159:8: C0103: Variable name "ci" doesn't conform to snake_case naming style (invalid-name)
spydrnet/compare/compare_netlists.py:166:12: C0103: Variable name "ci" doesn't conform to snake_case naming style (invalid-name)
spydrnet/compare/compare_netlists.py:168:8: C0103: Variable name "oi" doesn't conform to snake_case naming style (invalid-name)
spydrnet/compare/compare_netlists.py:175:12: C0103: Variable name "oi" doesn't conform to snake_case naming style (invalid-name)
spydrnet/compare/compare_netlists.py:177:8: C0206: Consider iterating with .items() (consider-using-dict-items)
spydrnet/compare/compare_netlists.py:177:17: C0201: Consider iterating the dictionary directly instead of calling .keys() (consider-iterating-dictionary)
spydrnet/compare/compare_netlists.py:80:4: R0912: Too many branches (18/12) (too-many-branches)
spydrnet/compare/compare_netlists.py:182:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/compare/compare_netlists.py:208:23: C0123: Use isinstance() rather than type() for a typecheck. (unidiomatic-typecheck)
spydrnet/compare/compare_netlists.py:216:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/compare/compare_netlists.py:233:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/compare/compare_netlists.py:238:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/compare/compare_netlists.py:274:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/compare/compare_netlists.py:287:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/compare/compare_netlists.py:325:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/compare/compare_netlists.py:329:12: C0209: Formatting a regular string which could be a f-string (consider-using-f-string)
spydrnet/compare/compare_netlists.py:344:12: C0209: Formatting a regular string which could be a f-string (consider-using-f-string)
spydrnet/compare/compare_netlists.py:366:12: C0200: Consider using enumerate instead of iterating with range and len (consider-using-enumerate)
spydrnet/compare/compare_netlists.py:366:16: C0103: Variable name "x" doesn't conform to snake_case naming style (invalid-name)
spydrnet/compare/compare_netlists.py:367:25: W0612: Unused variable 'value' (unused-variable)
spydrnet/compare/compare_netlists.py:373:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/compare/compare_netlists.py:381:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/compare/compare_netlists.py:381:4: R1710: Either all return statements in a function should return an expression, or none of them should. (inconsistent-return-statements)
************* Module spydrnet.composers
spydrnet/composers/__init__.py:1:0: C0114: Missing module docstring (missing-module-docstring)
spydrnet/composers/__init__.py:7:0: W0102: Dangerous default value [] as argument (dangerous-default-value)
spydrnet/composers/__init__.py:7:0: R0913: Too many arguments (6/5) (too-many-arguments)
spydrnet/composers/__init__.py:21:12: W0719: Raising too general exception: Exception (broad-exception-raised)
spydrnet/composers/__init__.py:30:27: C0209: Formatting a regular string which could be a f-string (consider-using-f-string)
************* Module spydrnet.composers.verilog.composer
spydrnet/composers/verilog/composer.py:699:9: W0511: TODO maybe also check if all of the cable is used. So no skipped wires. (fixme)
spydrnet/composers/verilog/composer.py:1:0: C0114: Missing module docstring (missing-module-docstring)
spydrnet/composers/verilog/composer.py:8:0: C0115: Missing class docstring (missing-class-docstring)
spydrnet/composers/verilog/composer.py:8:0: R0902: Too many instance attributes (9/7) (too-many-instance-attributes)
spydrnet/composers/verilog/composer.py:36:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/composers/verilog/composer.py:36:18: C0103: Argument name "ir" doesn't conform to snake_case naming style (invalid-name)
spydrnet/composers/verilog/composer.py:41:8: C0103: Variable name "f" doesn't conform to snake_case naming style (invalid-name)
spydrnet/composers/verilog/composer.py:41:12: W1514: Using open without explicitly specifying an encoding (unspecified-encoding)
spydrnet/composers/verilog/composer.py:41:12: R1732: Consider using 'with' for resource-allocating operations (consider-using-with)
spydrnet/composers/verilog/composer.py:70:16: C0103: Variable name "c" doesn't conform to snake_case naming style (invalid-name)
spydrnet/composers/verilog/composer.py:90:16: C0103: Variable name "c" doesn't conform to snake_case naming style (invalid-name)
spydrnet/composers/verilog/composer.py:111:8: W0107: Unnecessary pass statement (unnecessary-pass)
spydrnet/composers/verilog/composer.py:113:38: C0103: Argument name "o" doesn't conform to snake_case naming style (invalid-name)
spydrnet/composers/verilog/composer.py:123:19: C0103: Variable name "v" doesn't conform to snake_case naming style (invalid-name)
spydrnet/composers/verilog/composer.py:185:12: C0103: Variable name "c" doesn't conform to snake_case naming style (invalid-name)
spydrnet/composers/verilog/composer.py:213:12: C0103: Variable name "p" doesn't conform to snake_case naming style (invalid-name)
spydrnet/composers/verilog/composer.py:222:12: C0103: Variable name "c" doesn't conform to snake_case naming style (invalid-name)
spydrnet/composers/verilog/composer.py:238:12: C0103: Variable name "c" doesn't conform to snake_case naming style (invalid-name)
spydrnet/composers/verilog/composer.py:264:12: C0103: Variable name "w" doesn't conform to snake_case naming style (invalid-name)
spydrnet/composers/verilog/composer.py:297:16: W0104: Statement seems to have no effect (pointless-statement)
spydrnet/composers/verilog/composer.py:312:12: C0103: Variable name "p" doesn't conform to snake_case naming style (invalid-name)
spydrnet/composers/verilog/composer.py:323:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/composers/verilog/composer.py:323:28: C0103: Argument name "p" doesn't conform to snake_case naming style (invalid-name)
spydrnet/composers/verilog/composer.py:348:12: C0103: Variable name "c" doesn't conform to snake_case naming style (invalid-name)
spydrnet/composers/verilog/composer.py:357:12: C0103: Variable name "p" doesn't conform to snake_case naming style (invalid-name)
spydrnet/composers/verilog/composer.py:374:12: C0103: Variable name "p" doesn't conform to snake_case naming style (invalid-name)
spydrnet/composers/verilog/composer.py:376:12: C0103: Variable name "p" doesn't conform to snake_case naming style (invalid-name)
spydrnet/composers/verilog/composer.py:394:8: C0103: Variable name "hi" doesn't conform to snake_case naming style (invalid-name)
spydrnet/composers/verilog/composer.py:395:8: C0103: Variable name "li" doesn't conform to snake_case naming style (invalid-name)
spydrnet/composers/verilog/composer.py:400:8: C0103: Variable name "hi" doesn't conform to snake_case naming style (invalid-name)
spydrnet/composers/verilog/composer.py:401:8: C0103: Variable name "li" doesn't conform to snake_case naming style (invalid-name)
spydrnet/composers/verilog/composer.py:370:8: W0612: Unused variable 'left_wires' (unused-variable)
spydrnet/composers/verilog/composer.py:371:8: W0612: Unused variable 'right_wires' (unused-variable)
spydrnet/composers/verilog/composer.py:412:15: C0103: Variable name "v" doesn't conform to snake_case naming style (invalid-name)
spydrnet/composers/verilog/composer.py:436:15: C0103: Variable name "v" doesn't conform to snake_case naming style (invalid-name)
spydrnet/composers/verilog/composer.py:461:12: C0103: Variable name "p" doesn't conform to snake_case naming style (invalid-name)
spydrnet/composers/verilog/composer.py:485:12: C0103: Variable name "p" doesn't conform to snake_case naming style (invalid-name)
spydrnet/composers/verilog/composer.py:502:16: C0103: Variable name "wl" doesn't conform to snake_case naming style (invalid-name)
spydrnet/composers/verilog/composer.py:503:16: C0103: Variable name "wr" doesn't conform to snake_case naming style (invalid-name)
spydrnet/composers/verilog/composer.py:506:20: C0103: Variable name "wl" doesn't conform to snake_case naming style (invalid-name)
spydrnet/composers/verilog/composer.py:507:16: C0103: Variable name "il" doesn't conform to snake_case naming style (invalid-name)
spydrnet/composers/verilog/composer.py:508:16: C0103: Variable name "ir" doesn't conform to snake_case naming style (invalid-name)
spydrnet/composers/verilog/composer.py:513:4: R0914: Too many local variables (16/15) (too-many-locals)
spydrnet/composers/verilog/composer.py:519:12: C0103: Variable name "p" doesn't conform to snake_case naming style (invalid-name)
spydrnet/composers/verilog/composer.py:532:12: C0103: Variable name "p" doesn't conform to snake_case naming style (invalid-name)
spydrnet/composers/verilog/composer.py:539:16: C0103: Variable name "wl" doesn't conform to snake_case naming style (invalid-name)
spydrnet/composers/verilog/composer.py:540:16: C0103: Variable name "wr" doesn't conform to snake_case naming style (invalid-name)
spydrnet/composers/verilog/composer.py:543:20: C0103: Variable name "wl" doesn't conform to snake_case naming style (invalid-name)
spydrnet/composers/verilog/composer.py:544:16: C0103: Variable name "il" doesn't conform to snake_case naming style (invalid-name)
spydrnet/composers/verilog/composer.py:545:16: C0103: Variable name "ir" doesn't conform to snake_case naming style (invalid-name)
spydrnet/composers/verilog/composer.py:550:26: C0103: Argument name "o" doesn't conform to snake_case naming style (invalid-name)
spydrnet/composers/verilog/composer.py:599:27: E1120: No value for argument 'o' in method call (no-value-for-parameter)
spydrnet/composers/verilog/composer.py:611:8: R1705: Unnecessary "elif" after "return", remove the leading "el" from "elif" (no-else-return)
spydrnet/composers/verilog/composer.py:634:19: R1716: Simplify chained comparison between the operands (chained-comparison)
spydrnet/composers/verilog/composer.py:650:16: R1716: Simplify chained comparison between the operands (chained-comparison)
spydrnet/composers/verilog/composer.py:655:16: R1716: Simplify chained comparison between the operands (chained-comparison)
spydrnet/composers/verilog/composer.py:667:12: C0103: Variable name "w" doesn't conform to snake_case naming style (invalid-name)
spydrnet/composers/verilog/composer.py:677:12: C0103: Variable name "p" doesn't conform to snake_case naming style (invalid-name)
spydrnet/composers/verilog/composer.py:715:12: C0103: Variable name "p" doesn't conform to snake_case naming style (invalid-name)
spydrnet/composers/verilog/composer.py:721:37: C0103: Argument name "o" doesn't conform to snake_case naming style (invalid-name)
************* Module spydrnet.composers.edif.edifify_names
spydrnet/composers/edif/edifify_names.py:1:0: C0114: Missing module docstring (missing-module-docstring)
spydrnet/composers/edif/edifify_names.py:78:12: C0103: Variable name "r" doesn't conform to snake_case naming style (invalid-name)
spydrnet/composers/edif/edifify_names.py:79:12: R1705: Unnecessary "else" after "return", remove the "else" and de-indent the code inside it (no-else-return)
spydrnet/composers/edif/edifify_names.py:96:8: C0200: Consider using enumerate instead of iterating with range and len (consider-using-enumerate)
spydrnet/composers/edif/edifify_names.py:134:12: C0103: Variable name "r" doesn't conform to snake_case naming style (invalid-name)
************* Module spydrnet.composers.edif.composer
spydrnet/composers/edif/composer.py:352:13: W0511: TODO Clean up code in this if statement (fixme)
spydrnet/composers/edif/composer.py:398:9: W0511: TODO this should be checked against some sort of metadata (fixme)
spydrnet/composers/edif/composer.py:427:13: W0511: for port in cable.getConnectionList(): #TODO create fuction cable.getConnectionList() (fixme)
spydrnet/composers/edif/composer.py:533:9: W0511: TODO this only handles string properties for now (fixme)
spydrnet/composers/edif/composer.py:1:0: C0114: Missing module docstring (missing-module-docstring)
spydrnet/composers/edif/composer.py:4:0: W0401: Wildcard import spydrnet.ir (wildcard-import)
spydrnet/composers/edif/composer.py:18:18: C0103: Argument name "ir" doesn't conform to snake_case naming style (invalid-name)
spydrnet/composers/edif/composer.py:60:24: W0719: Raising too general exception: Exception (broad-exception-raised)
spydrnet/composers/edif/composer.py:80:12: W0719: Raising too general exception: Exception (broad-exception-raised)
spydrnet/composers/edif/composer.py:101:20: C0103: Argument name "o" doesn't conform to snake_case naming style (invalid-name)
spydrnet/composers/edif/composer.py:127:12: C0103: Variable name "o" doesn't conform to snake_case naming style (invalid-name)
spydrnet/composers/edif/composer.py:136:8: W0621: Redefining name 'name' from outer scope (line 4) (redefined-outer-name)
spydrnet/composers/edif/composer.py:135:12: W0719: Raising too general exception: Exception (broad-exception-raised)
spydrnet/composers/edif/composer.py:146:13: W1514: Using open without explicitly specifying an encoding (unspecified-encoding)
spydrnet/composers/edif/composer.py:146:36: C0103: Variable name "fi" doesn't conform to snake_case naming style (invalid-name)
spydrnet/composers/edif/composer.py:150:24: W1514: Using open without explicitly specifying an encoding (unspecified-encoding)
spydrnet/composers/edif/composer.py:150:24: R1732: Consider using 'with' for resource-allocating operations (consider-using-with)
spydrnet/composers/edif/composer.py:188:12: W0719: Raising too general exception: Exception (broad-exception-raised)
spydrnet/composers/edif/composer.py:186:8: W0612: Unused variable 'test' (unused-variable)
spydrnet/composers/edif/composer.py:220:28: C0209: Formatting a regular string which could be a f-string (consider-using-f-string)
spydrnet/composers/edif/composer.py:227:16: C0209: Formatting a regular string which could be a f-string (consider-using-f-string)
spydrnet/composers/edif/composer.py:233:20: C0209: Formatting a regular string which could be a f-string (consider-using-f-string)
spydrnet/composers/edif/composer.py:284:16: W0621: Redefining name 'name' from outer scope (line 4) (redefined-outer-name)
spydrnet/composers/edif/composer.py:298:12: W0621: Redefining name 'name' from outer scope (line 4) (redefined-outer-name)
spydrnet/composers/edif/composer.py:380:8: R1705: Unnecessary "elif" after "return", remove the leading "el" from "elif" (no-else-return)
spydrnet/composers/edif/composer.py:449:12: W0621: Redefining name 'name' from outer scope (line 4) (redefined-outer-name)
spydrnet/composers/edif/composer.py:457:12: C0103: Variable name "w" doesn't conform to snake_case naming style (invalid-name)
spydrnet/composers/edif/composer.py:472:12: C0200: Consider using enumerate instead of iterating with range and len (consider-using-enumerate)
spydrnet/composers/edif/composer.py:472:16: C0103: Variable name "x" doesn't conform to snake_case naming style (invalid-name)
spydrnet/composers/edif/composer.py:485:8: W0107: Unnecessary pass statement (unnecessary-pass)
spydrnet/composers/edif/composer.py:491:12: C0200: Consider using enumerate instead of iterating with range and len (consider-using-enumerate)
spydrnet/composers/edif/composer.py:491:16: C0103: Variable name "x" doesn't conform to snake_case naming style (invalid-name)
spydrnet/composers/edif/composer.py:487:42: W0613: Unused argument 'cable_name' (unused-argument)
spydrnet/composers/edif/composer.py:512:30: C0103: Argument name "netlistObj" doesn't conform to snake_case naming style (invalid-name)
spydrnet/composers/edif/composer.py:513:8: W0621: Redefining name 'name' from outer scope (line 4) (redefined-outer-name)
spydrnet/composers/edif/composer.py:514:8: R1705: Unnecessary "else" after "return", remove the "else" and de-indent the code inside it (no-else-return)
spydrnet/composers/edif/composer.py:517:12: C0103: Variable name "oldName" doesn't conform to snake_case naming style (invalid-name)
spydrnet/composers/edif/composer.py:28:8: W0201: Attribute 'output_filename' defined outside __init__ (attribute-defined-outside-init)
spydrnet/composers/edif/composer.py:32:12: W0201: Attribute 'filename' defined outside __init__ (attribute-defined-outside-init)
spydrnet/composers/edif/composer.py:8:0: R0903: Too few public methods (1/2) (too-few-public-methods)
spydrnet/composers/edif/composer.py:2:0: W0611: Unused import inspect (unused-import)
spydrnet/composers/edif/composer.py:4:0: W0614: Unused import(s) importlib, typing, RegisterModule, filename, eachModule, cls, name, plugin, ext_cls, cls_bases, get_active_plugins, Element, FirstClassElement, Bundle, Pin, InnerPin, Wire, Cable, Instance, Definition, Library and Netlist from wildcard import of spydrnet.ir (unused-wildcard-import)
************* Module spydrnet.composers.eblif.eblif_composer
spydrnet/composers/eblif/eblif_composer.py:181:0: C0325: Unnecessary parens after 'if' keyword (superfluous-parens)
spydrnet/composers/eblif/eblif_composer.py:194:0: C0325: Unnecessary parens after 'if' keyword (superfluous-parens)
spydrnet/composers/eblif/eblif_composer.py:1:0: C0114: Missing module docstring (missing-module-docstring)
spydrnet/composers/eblif/eblif_composer.py:6:0: C0115: Missing class docstring (missing-class-docstring)
spydrnet/composers/eblif/eblif_composer.py:16:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/composers/eblif/eblif_composer.py:16:18: C0103: Argument name "ir" doesn't conform to snake_case naming style (invalid-name)
spydrnet/composers/eblif/eblif_composer.py:20:4: C0116: Missing function or method docstring (missing-function-docstring)
spydrnet/composers/eblif/eblif_composer.py:22:12: C0103: Variable name "f" doesn't conform to snake_case naming style (invalid-name)
spydrnet/composers/eblif/eblif_composer.py:22:16: W1514: Using open without explicitly specifying an encoding (unspecified-encoding)