python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Allow lint to process and/or ignore non-valid python statements
I have a set of Python scripts running in a vendor's SaaS environment that limits some of the features of Python (due to how they're running our scripts under the covers, in some kind of custom intera...
Tyler DiBartolo
Votes: 0
Answers: 1
Pylint gives error warning to working relative imports
I have the following file structure:
├── README.md
├── apps
│ ├── fire_analysis.py
│ └── rois.py
└── streamlit_app.py
File contents
streamlit_app.py
from apps import fire_analysis
apps/fire...
osbm
Votes: 0
Answers: 1
Pylint w0212-Warning while doing unittests
we often use this double underscore prefix for internal methods of our classes. This usually raises a W0212 during unit-testing, because we call the proctected methods directly e.g. TestClass().__my_p...
5th
Votes: 0
Answers: 1
Pylint gives warnings for centralised imports
In a python project I would like to globber imports into a single file called common_imports.py in order to reduce number of import statements in python files.
Instead of writing
file1.py
import foo
...
avans
Votes: 0
Answers: 1