We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
maflib.rules.download の url 引数など、タスクに必須なタスクパラメータが抜けているとき、コマンドが実行される前に警告を出して欲しい。
maflib.rules.download
url
これまでは、これらのルールは外側でパラメータを与えてラップしていたが、このパラメータをタスクパラメータで指定するようにすると、それが必須でも実行時までチェックが行われないため、エラーが実験途中まで関知されない。
download は
download
@maflib.util.rule def download(task): url = task.parameter['url']
となっているが、この url が必須であることを関数定義の際に知らせる必要がある。 rule デコレータを拡張し、
rule
@maflib.util.rule(required='url')
と書くようにすると、 url がセットされていない場合に警告を出す、など?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
maflib.rules.download
のurl
引数など、タスクに必須なタスクパラメータが抜けているとき、コマンドが実行される前に警告を出して欲しい。これまでは、これらのルールは外側でパラメータを与えてラップしていたが、このパラメータをタスクパラメータで指定するようにすると、それが必須でも実行時までチェックが行われないため、エラーが実験途中まで関知されない。
download
はとなっているが、この
url
が必須であることを関数定義の際に知らせる必要がある。rule
デコレータを拡張し、@maflib.util.rule(required='url')
と書くようにすると、
url
がセットされていない場合に警告を出す、など?The text was updated successfully, but these errors were encountered: