File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,16 @@ def header_confirm(path: str) -> None:
1818 assert post ["tags" ] != "" , f"tags is empty in { path } "
1919 assert post ["optuna_versions" ] != "" , f"optuna_versions is empty in { path } "
2020 assert post ["license" ] != "" , f"license is empty in { path } "
21+ assert post ["author" ] != "" and post ["author" ] is not None , f"author is empty in { path } "
22+ assert post ["title" ] != "" and post ["title" ] is not None , f"title is empty in { path } "
23+ assert (
24+ post ["description" ] != "" and post ["description" ] is not None
25+ ), f"description is empty in { path } "
26+ assert post ["tags" ] != "" and post ["tags" ] is not None , f"tags is empty in { path } "
27+ assert (
28+ post ["optuna_versions" ] != "" and post ["optuna_versions" ] is not None
29+ ), f"optuna_versions is empty in { path } "
30+ assert post ["license" ] != "" and post ["license" ] is not None , f"license is empty in { path } "
2131
2232
2333if __name__ == "__main__" :
You can’t perform that action at this time.
0 commit comments