Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Auto-format: cargo fmt --all
  • Loading branch information
github-actions[bot] committed Feb 11, 2026
commit 0779e7eaa011738c8a9304ca848f1eb48bd87be2
2 changes: 1 addition & 1 deletion crates/vm/src/codecs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ use rustpython_common::{
wtf8::{CodePoint, Wtf8, Wtf8Buf},
};

use crate::common::lock::OnceCell;
use crate::{
AsObject, Context, Py, PyObject, PyObjectRef, PyPayload, PyResult, TryFromBorrowedObject,
TryFromObject, VirtualMachine,
Expand All @@ -18,7 +19,6 @@ use crate::{
};
use alloc::borrow::Cow;
use core::ops::{self, Range};
use crate::common::lock::OnceCell;
use std::collections::HashMap;

pub struct CodecsRegistry {
Expand Down
Loading