Skip to content

Commit 777100c

Browse files
committed
Fix point_names type-hint
1 parent dba35e0 commit 777100c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adaptive/learner/learnerND.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -400,7 +400,7 @@ def to_dataframe(
400400
self,
401401
with_default_function_args: bool = True,
402402
function_prefix: str = "function.",
403-
point_names: tuple[str] = ("x", "y", "z"),
403+
point_names: tuple[str, ...] = ("x", "y", "z"),
404404
value_name: str = "y",
405405
) -> pandas.DataFrame:
406406
if not with_pandas:

0 commit comments

Comments
 (0)