mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-03-17 06:20:27 +00:00
The errors were
************* Module linkcheck.ansicolor
linkcheck/ansicolor.py:190:21: E0606: Possibly using variable 'WinColor' before assignment (possibly-used-before-assignment)
************* Module linkcheck.plugins.locationinfo
linkcheck/plugins/locationinfo.py:107:12: E0606: Possibly using variable 'geoip_error' before assignment (possibly-used-before-assignment)
and while it's true that the variables (WinColor, geoip_error) are
assigned conditionally, their use is protected (indirectly) by the same
conditionals.
|
||
|---|---|---|
| .. | ||
| __init__.py | ||
| anchorcheck.py | ||
| httpheaderinfo.py | ||
| locationinfo.py | ||
| markdowncheck.py | ||
| parsepdf.py | ||
| parseword.py | ||
| regexcheck.py | ||
| sslcertcheck.py | ||
| syntaxchecks.py | ||
| viruscheck.py | ||