We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently, the github actions fail because flake8 is throwing a multitude of undefined name errors. A recent output:
undefined name
./build/lib/Owls/io/io.py:240:15: F821 undefined name 'Origins' origins = Origins() ^ ./build/lib/Owls/io/io.py:278:15: F821 undefined name 'Origins' origins = Origins() ^ ./build/lib/Owls/parser/LogFile.py:123:34: F821 undefined name 'os' fold, dirs, files = next(os.walk(folder)) ^ ./build/lib/Owls/parser/LogFile.py:126:14: F821 undefined name 'DataFrame' df = DataFrame() ^ ./build/lib/Owls/parser/LogFile.py:129:18: F821 undefined name 'concat' df = concat([df, self.parse_to_df(log_name)]) ^ ./src/Owls/io/io.py:240:15: F821 undefined name 'Origins' origins = Origins() ^ ./src/Owls/io/io.py:278:15: F821 undefined name 'Origins' origins = Origins() ^ ./src/Owls/parser/LogFile.py:123:34: F821 undefined name 'os' fold, dirs, files = next(os.walk(folder)) ^ ./src/Owls/parser/LogFile.py:126:14: F821 undefined name 'DataFrame' df = DataFrame() ^ ./src/Owls/parser/LogFile.py:129:18: F821 undefined name 'concat' df = concat([df, self.parse_to_df(log_name)])
The text was updated successfully, but these errors were encountered:
lupeterm
No branches or pull requests
Currently, the github actions fail because flake8 is throwing a multitude of
undefined name
errors.A recent output:
The text was updated successfully, but these errors were encountered: