Skip to content

Commit fbb03c6

Browse files
committed
style(auth): satisfy clippy boolean simplification
1 parent d93c29a commit fbb03c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/google-workspace-cli/src/auth_commands.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -811,7 +811,7 @@ fn should_run_interactive_scope_picker(
811811
services_filter: Option<&HashSet<String>>,
812812
) -> bool {
813813
matches!(scope_mode, ScopeMode::Default)
814-
&& !services_filter.is_some_and(|services| !services.is_empty())
814+
&& services_filter.is_none_or(|services| services.is_empty())
815815
}
816816

817817
/// Check if a scope URL belongs to one of the specified services.

0 commit comments

Comments
 (0)