Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
40 changes: 28 additions & 12 deletions .basedpyright/baseline.json
Original file line number Diff line number Diff line change
Expand Up @@ -8045,6 +8045,14 @@
"lineCount": 1
}
},
{
"code": "reportUnknownParameterType",
"range": {
"startColumn": 4,
"endColumn": 25,
"lineCount": 1
}
},
{
"code": "reportUnknownParameterType",
"range": {
Expand Down Expand Up @@ -8117,13 +8125,29 @@
"lineCount": 1
}
},
{
"code": "reportUnknownVariableType",
"range": {
"startColumn": 8,
"endColumn": 14,
"lineCount": 1
}
},
{
"code": "reportAny",
"range": {
"startColumn": 40,
"endColumn": 43,
"lineCount": 1
}
},
{
"code": "reportUnknownVariableType",
"range": {
"startColumn": 11,
"endColumn": 17,
"lineCount": 1
}
}
],
"./pytools/graph.py": [
Expand Down Expand Up @@ -8895,14 +8919,6 @@
},
{
"code": "reportUnknownVariableType",
"range": {
"startColumn": 11,
"endColumn": 47,
"lineCount": 1
}
},
{
"code": "reportDeprecated",
"range": {
"startColumn": 11,
"endColumn": 37,
Expand All @@ -8912,16 +8928,16 @@
{
"code": "reportUnknownArgumentType",
"range": {
"startColumn": 38,
"endColumn": 39,
"startColumn": 28,
"endColumn": 29,
"lineCount": 1
}
},
{
"code": "reportUnknownArgumentType",
"range": {
"startColumn": 42,
"endColumn": 46,
"startColumn": 32,
"endColumn": 36,
"lineCount": 1
}
},
Expand Down
2 changes: 1 addition & 1 deletion pytools/obj_array.py
Original file line number Diff line number Diff line change
Expand Up @@ -659,7 +659,7 @@ def obj_array_vectorize_n_args(f, *args):
warn("obj_array_vectorize_n_args is deprecated, "
"use obj_array.vectorize_n_args instead. "
"This will stop working in 2027.", DeprecationWarning, stacklevel=2)
return obj_array_vectorize_n_args(f, *args)
return vectorize_n_args(f, *args)


def vectorized_n_args(f):
Expand Down
Loading