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
Next Next commit
typing module name
  • Loading branch information
youknowone committed Jun 26, 2025
commit 667d2a61f55ad6ddc3ea6ae378d3d74bf2261d4a
4 changes: 2 additions & 2 deletions vm/src/stdlib/typing.rs
Original file line number Diff line number Diff line change
Expand Up @@ -717,7 +717,7 @@ pub(crate) mod decl {
}

#[pyattr]
#[pyclass(name = "ParamSpecArgs")]
#[pyclass(name = "ParamSpecArgs", module = "typing")]
#[derive(Debug, PyPayload)]
#[allow(dead_code)]
pub(crate) struct ParamSpecArgs {
Expand Down Expand Up @@ -767,7 +767,7 @@ pub(crate) mod decl {
}

#[pyattr]
#[pyclass(name = "ParamSpecKwargs")]
#[pyclass(name = "ParamSpecKwargs", module = "typing")]
#[derive(Debug, PyPayload)]
#[allow(dead_code)]
pub(crate) struct ParamSpecKwargs {
Expand Down