[`pylint`] Fix docs example that produced different output (`PLW0603`) (#18216)

This commit is contained in:
Denys Kyslytsyn 2025-05-22 14:55:37 +09:00 committed by GitHub
parent bdf488462a
commit 6df10c638e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 1 deletions

View File

@ -31,8 +31,9 @@ use crate::checkers::ast::Checker;
/// ///
/// ///
/// def foo(): /// def foo():
/// var = 10
/// print(var) /// print(var)
/// return 10 /// return var
/// ///
/// ///
/// var = foo() /// var = foo()