Skip to content

Commit

Permalink
fix(pipeline): changed incorrect pro_argspec.keywords to pro_argspec.…
Browse files Browse the repository at this point in the history
…varkw

Co-authored-by: danielemichilli <danielemichilli@gmail.com>, fixed in #121
  • Loading branch information
danielemichilli committed Mar 26, 2020
1 parent e9a355c commit 906d753
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions caput/pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -1002,8 +1002,8 @@ def __init__(self):
raise PipelineConfigError(msg)
if (
pro_argspec.varargs
or pro_argspec.keywords
or pro.argspec.kwonlyargs
or pro_argspec.varkw
or pro_argspec.kwonlyargs
or pro_argspec.defaults
):
msg = (
Expand Down

0 comments on commit 906d753

Please sign in to comment.