pylint icon indicating copy to clipboard operation
pylint copied to clipboard

It's not just a linter that annoys you!

Results 411 pylint issues
Sort by recently updated
recently updated
newest added

### Bug description ```py import inspect from dataclasses import dataclass @dataclass(kw_only=True) class Foo: a: int b: str @dataclass(kw_only=False) class Bar(Foo): c: int print(inspect.signature(Bar.__init__)) # (self, c: int, *, a: int,...

Needs triage :inbox_tray:

### Bug description ```py import inspect from dataclasses import dataclass, field @dataclass class Foo: a: int b: str @dataclass class Bar(Foo): a: int = field(init=False, default=1) c: str a =...

Needs triage :inbox_tray:

### Bug description ``` # This module is named "gzip". #!/usr/bin/python3 """Test""" import gzip gzip.main() ``` ### Configuration _No response_ ### Command used ```shell pylint gzip ``` ### Pylint output...

topic-import-system
False Positive ðŸĶŸ
Needs PR

## Type of Changes | | Type | | --- | ---------------------- | | ✓ | :bug: Bug fix | | | :sparkles: New feature | | | :hammer: Refactoring...

- [x] Add yourself to CONTRIBUTORS if you are a new contributor. - [x] Write a good description on what the PR does. ## Type of Changes | | Type...

Blocked 🚧
Maintenance
Skip news :mute:

- [x] Add yourself to CONTRIBUTORS if you are a new contributor. - [x] Write a good description on what the PR does. ## Type of Changes | | Type...

Maintenance
Skip news :mute:

## Type of Changes | | Type | | --- | ---------------------- | | ✓ | :bug: Bug fix | | ✓ | :scroll: Docs | ## Description Regression test...

False Positive ðŸĶŸ
Needs astroid update

### Bug description Some simple valid Python code for demonstration purposes: ```python import asyncio async def main(): async def my_gen(): for _ in range(10): yield _ result = tuple([_ async...

Needs investigation 🔎

## Type of Changes | | Type | | --- | ---------------------- | | ✓ | :bug: Bug fix | ## Description Closes #7208 It's better for performance to simply...

Bug :beetle:
False Positive ðŸĶŸ
Breaking changes for 3.0 ðŸĶĪ
Needs decision :lock:

### Bug description ## Pylint doesn't handle mutating the type of values in a dictionary correctly. ### Minimal reproducible problem: ```py import re patterns = { 'number': r'[0-9]+' } #...

topic-control-flow
False Positive ðŸĶŸ
False Negative ðŸĶ‹