You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 1, 2021. It is now read-only.
In pep8 tests, blueoil/converter and tests/converter is excluded. If we include those directories, there are about 430 errors but about 330 of them are about F405 and easy to fix.
./blueoil/converter/core/operators.py:34:20: F405 'List' may be undefined, or defined from star imports: .data_types
There is another error about star imports. We can fix this error by using import data_types as dt.
In pep8 tests,
blueoil/converter
andtests/converter
is excluded. If we include those directories, there are about 430 errors but about 330 of them are about F405 and easy to fix.There is another error about star imports. We can fix this error by using
import data_types as dt
.The remaining 100 errors are about formatting, unused modules, unused variables, etc.
The text was updated successfully, but these errors were encountered: