-
- AF 2.5.4
- Joomla 4.0.0
- Template One
- fontawesome.min.css not found
Reason:
See https://github.com/joomdev/Astroid-Framework/blob/v2.5.4/astroid/astroid-framework/framework/library/astroid…
-
How can I treat 404 and 403 errors differently with different messages on a website with the Astroid framework?
Astroid framework 3.0.11
-
Ran into this when trying to use pyreverse, but I think this might be an astroid bug. It seems like the issue is that `is_stdlib_module()` expects a string module name, but in cases where the node is …
bjmc updated
4 months ago
-
Hi there,
when I use the animation (for example fadeInUp) for my component section in Astroid I always need to scroll from above / top to make the effect work. This means when I'm already scolled d…
-
Passing the following to my SublimeLinter settings:
```
"linters": {
"pylint": {
"python": "/usr/local/bin/python3"
}
}
```
**Running Sublime Text 3.2.2**
``…
-
## Module
The name of the module that has a bug.
pylint-odoo/checkers/odoo_addons.py
## Describe the bug
A clear and concise description of what the bug is.
When running pylint-odoo with …
-
Hi all,
I was checking a demo site and w3c validator gives some errors.
One error is about the Header Section Layout. If you choose the container-fluid section layout, astroid creates a div with …
-
### Bug description
When parsing the following file:
```python
import aiohttp
s = aiohttp.ClientSession()
```
### Command used
```shell
pylint test.py
```
### Pylint output
…
-
### Bug description
MWE:
```python
import numpy as np
class A:
foo = np.array([1, 2])
```
and then run the following:
```
pyreverse -ASmy fail.py
```
### Configuration
_No …
-
### Steps to reproduce
```
import astroid
code = """
class Test:
def __getitem__(self, key):
if key == 1:
return 42
else:
return None
x = Test()
result = x[42] …