-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Closed
Labels
bugSomething isn't workingSomething isn't workinghelp wantedContributions especially welcomeContributions especially welcomepython313Related to Python 3.13Related to Python 3.13
Description
ruff version 0.8.4
python version 3.13
prior issue: #13699 prior PR: #13704
src\salamander\_type_stuff.py:37:20: E251 [*] Unexpected spaces around keyword / parameter equals
|
37 | type Coro[T: object = Any] = Coroutine[None, None, T]
| ^ E251
|
= help: Remove whitespace
src\salamander\_type_stuff.py:37:22: E251 [*] Unexpected spaces around keyword / parameter equals
|
37 | type Coro[T: object = Any] = Coroutine[None, None, T]
| ^ E251
|
= help: Remove whitespace
These are false positives.
Applying the fix leads to (correctly) identifying:
src\salamander\_type_stuff.py:37:20: E225 [*] Missing whitespace around operator
|
37 | type Coro[T: object=Any] = Coroutine[None, None, T]
| ^ E225
|
= help: Add missing whitespace
config is here if useful
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workinghelp wantedContributions especially welcomeContributions especially welcomepython313Related to Python 3.13Related to Python 3.13