We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eed5ebb commit 1f80ba1Copy full SHA for 1f80ba1
CHANGELOG.md
@@ -1,5 +1,10 @@
1
# Changelog
2
3
+## [master]
4
+
5
+### Changed
6
+ - Fixed false-positive `expression-not-assigned` linter check on lambdas
7
8
## [4.3.2] 2024-10-20
9
10
### Added
gdtoolkit/linter/basic_checks.py
@@ -70,6 +70,7 @@ def _expression_not_assigned_check(parse_tree: Tree) -> List[Problem]:
70
"standalone_call",
71
"getattr_call",
72
"string",
73
+ "lambda",
74
]:
75
problems.append(
76
Problem(
0 commit comments