CI #60
Annotations
15 errors, 3 warnings, and 10 notices
E0401:
python/graphs.py#L15
Unable to import 'wcwidth'
|
E0606:
python/graphs.py#L195
Possibly using variable 'scale_base' before assignment
|
E0606:
python/graphs.py#L284
Possibly using variable 'strm' before assignment
|
E0401:
python/tables.py#L13
Unable to import 'wcwidth'
|
Pylint
Process completed with exit code 30.
|
Ruff (EXE001):
python/graphs.py#L1
python/graphs.py:1:1: EXE001 Shebang is present but file is not executable
|
Ruff (D100):
python/graphs.py#L1
python/graphs.py:1:1: D100 Missing docstring in public module
|
Ruff (D101):
python/graphs.py#L20
python/graphs.py:20:7: D101 Missing docstring in public class
|
Ruff (D101):
python/graphs.py#L44
python/graphs.py:44:7: D101 Missing docstring in public class
|
Ruff (D101):
python/graphs.py#L97
python/graphs.py:97:7: D101 Missing docstring in public class
|
Ruff (D101):
python/graphs.py#L108
python/graphs.py:108:7: D101 Missing docstring in public class
|
Ruff (D101):
python/graphs.py#L141
python/graphs.py:141:7: D101 Missing docstring in public class
|
Ruff (D103):
python/graphs.py#L171
python/graphs.py:171:5: D103 Missing docstring in public function
|
Ruff (E741):
python/graphs.py#L473
python/graphs.py:473:10: E741 Ambiguous variable name: `l`
|
Ruff (PLW2901):
python/graphs.py#L654
python/graphs.py:654:6: PLW2901 `for` loop variable `x` overwritten by assignment target
|
W0621:
python/graphs.py#L555
Redefining name 'histogram' from outer scope (line 517)
|
W0621:
python/graphs.py#L720
Redefining name 'function' from outer scope (line 741)
|
W0621:
python/tables.py#L57
Redefining name 'array' from outer scope (line 174)
|
C0114:
python/graphs.py#L1
Missing module docstring
|
C0115:
python/graphs.py#L20
Missing class docstring
|
C0115:
python/graphs.py#L44
Missing class docstring
|
C0115:
python/graphs.py#L97
Missing class docstring
|
C0115:
python/graphs.py#L108
Missing class docstring
|
C0115:
python/graphs.py#L141
Missing class docstring
|
C0116:
python/graphs.py#L171
Missing function or method docstring
|
C1805:
python/graphs.py#L236
"intpart == 0" can be simplified to "not intpart", if it is strictly an int, as 0 is falsey
|
C1805:
python/graphs.py#L238
"intpart != 0" can be simplified to "intpart", if it is strictly an int, as 0 is falsey
|
C1805:
python/graphs.py#L294
"height == 0" can be simplified to "not height", if it is strictly an int, as 0 is falsey
|