Improve N803 example (#8714)

This commit is contained in:
Jonas Haag 2023-11-16 19:50:31 +02:00 committed by GitHub
parent 2424188bb2
commit 5fa961f670
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -24,13 +24,13 @@ use crate::settings::types::IdentifierPattern;
/// ///
/// ## Example /// ## Example
/// ```python /// ```python
/// def MY_FUNCTION(): /// def my_function(A, myArg):
/// pass /// pass
/// ``` /// ```
/// ///
/// Use instead: /// Use instead:
/// ```python /// ```python
/// def my_function(): /// def my_function(a, my_arg):
/// pass /// pass
/// ``` /// ```
/// ///