Skip to content

Commit 775489f

Browse files
committed
remove outdated comment
1 parent 7df9988 commit 775489f

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/causalprog/backend/_convert_signature.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -289,10 +289,6 @@ def fn_with_new_signature(*args: tuple, **kwargs: dict[str, Any]) -> ReturnType:
289289
},
290290
**kwargs_to_pass_on,
291291
)
292-
# We can supply all arguments EXCEPT the variable-positional and positional-only
293-
# arguments as keyword args.
294-
# Positional-only arguments have to come first, followed by the
295-
# variable-positional parameters.
296292
fn_args = [fn_kwargs.pop(p_name) for p_name in fn_posix_args]
297293
if fn_vargs_param:
298294
fn_args.extend(fn_kwargs.pop(fn_vargs_param, []))

0 commit comments

Comments
 (0)