We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2458909 commit f352115Copy full SHA for f352115
crates/vm/src/builtins/type.rs
@@ -847,9 +847,7 @@ impl PyType {
847
if self.tp_version_tag.load(Ordering::Acquire) != tp_version {
848
return None;
849
}
850
- guard
851
- .as_ref()
852
- .map(|init| init.to_owned())
+ guard.as_ref().map(|init| init.to_owned())
853
854
855
/// Cache __getitem__ for BINARY_OP_SUBSCR_GETITEM specialization.
0 commit comments