ODR violation fix via function inlining #71
Annotations
15 errors, 3 warnings, and 10 notices
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 (D103):
python/graphs.py#L25
python/graphs.py:25:6: D103 Missing docstring in public function
|
Ruff (D101):
python/graphs.py#L33
python/graphs.py:33:7: D101 Missing docstring in public class
|
Ruff (D101):
python/graphs.py#L57
python/graphs.py:57:7: D101 Missing docstring in public class
|
Ruff (D101):
python/graphs.py#L110
python/graphs.py:110:7: D101 Missing docstring in public class
|
Ruff (D101):
python/graphs.py#L121
python/graphs.py:121:7: D101 Missing docstring in public class
|
Ruff (D101):
python/graphs.py#L154
python/graphs.py:154:7: D101 Missing docstring in public class
|
Ruff (D103):
python/graphs.py#L184
python/graphs.py:184:5: D103 Missing docstring in public function
|
Ruff (E741):
python/graphs.py#L487
python/graphs.py:487:10: E741 Ambiguous variable name: `l`
|
E0401:
python/graphs.py#L28
Unable to import 'wcwidth'
|
E0606:
python/graphs.py#L208
Possibly using variable 'scale_base' before assignment
|
E0606:
python/graphs.py#L298
Possibly using variable 'strm' before assignment
|
E0401:
python/tables.py#L26
Unable to import 'wcwidth'
|
Pylint
Process completed with exit code 30.
|
W0621:
python/graphs.py#L569
Redefining name 'histogram' from outer scope (line 531)
|
W0621:
python/graphs.py#L734
Redefining name 'function' from outer scope (line 755)
|
W0621:
python/tables.py#L70
Redefining name 'array' from outer scope (line 187)
|
C0114:
python/graphs.py#L1
Missing module docstring
|
C0116:
python/graphs.py#L25
Missing function or method docstring
|
C0115:
python/graphs.py#L33
Missing class docstring
|
C0115:
python/graphs.py#L57
Missing class docstring
|
C0115:
python/graphs.py#L110
Missing class docstring
|
C0115:
python/graphs.py#L121
Missing class docstring
|
C0115:
python/graphs.py#L154
Missing class docstring
|
C0116:
python/graphs.py#L184
Missing function or method docstring
|
C1805:
python/graphs.py#L250
"intpart == 0" can be simplified to "not intpart", if it is strictly an int, as 0 is falsey
|
C1805:
python/graphs.py#L252
"intpart != 0" can be simplified to "intpart", if it is strictly an int, as 0 is falsey
|