We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c9a3cbe commit 8ad0159Copy full SHA for 8ad0159
1 file changed
src/annotation.rs
@@ -503,7 +503,7 @@ impl PyAnnotation {
503
config.skip_context = v.extract()?;
504
}
505
if let Ok(Some(v)) = kwargs.get_item("no_auto_context") {
506
- let no_auto_context = v.extract()?;
+ let no_auto_context: bool = v.extract()?;
507
auto_context = !no_auto_context;
508
509
if let Ok(Some(v)) = kwargs.get_item("context_namespaces") {
0 commit comments