diff --git a/crates/ruff_linter/src/rules/flake8_bandit/rules/ssh_no_host_key_verification.rs b/crates/ruff_linter/src/rules/flake8_bandit/rules/ssh_no_host_key_verification.rs index ba7cdf6134..03b9eb3473 100644 --- a/crates/ruff_linter/src/rules/flake8_bandit/rules/ssh_no_host_key_verification.rs +++ b/crates/ruff_linter/src/rules/flake8_bandit/rules/ssh_no_host_key_verification.rs @@ -28,7 +28,7 @@ use crate::checkers::ast::Checker; /// from paramiko import client /// /// ssh_client = client.SSHClient() -/// ssh_client.set_missing_host_key_policy() +/// ssh_client.set_missing_host_key_policy(client.RejectPolicy) /// ``` /// /// ## References