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
The code below runs fine, but pylint reports the error "No name '_' in module 'ibis' [no-name-in-module] against the line starting "from ibis...". ------------------- """Test code""" import ibis from ibis import _ import pandas as pd ibis.options.interactive = True df = ibis.memtable( pd.DataFrame( [["a", 1, 2], ["b", 3, 4]], columns=["one", "two", "three"], index=[5, 6], ) ) df.select(_.one, _.two)
pylint ibis_test.py
************* Module ibis_test ibis_test.py:4:0: E0611: No name '_' in module 'ibis' (no-name-in-module)
This is valid code, so I'd expect no error
pylint 3.2.7 astroid 3.2.4 Python 3.12.2 | packaged by conda-forge | (main, Feb 16 2024, 20:54:21) [Clang 16.0.6 ]
macOS 15.1.1 running on an Apple chip. Using Anaconda Python.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Bug description
Configuration
Command used
Pylint output
Expected behavior
This is valid code, so I'd expect no error
Pylint version
OS / Environment
macOS 15.1.1 running on an Apple chip. Using Anaconda Python.
Additional dependencies
The text was updated successfully, but these errors were encountered: