We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80e5021 commit 4afd534Copy full SHA for 4afd534
detection_rules/devtools.py
@@ -114,7 +114,7 @@ def dev_group():
114
@click.pass_context
115
def build_release(
116
ctx: click.Context,
117
- config_file: Path | None,
+ config_file: Path,
118
update_version_lock: bool,
119
generate_navigator: bool,
120
generate_docs: str,
@@ -130,7 +130,7 @@ def build_release(
130
)
131
ctx.exit()
132
133
- config = load_dump(config_file)["package"]
+ config = load_dump(str(config_file))["package"]
134
135
package_path = get_etc_path(["package.yaml"])
136
err_msg = (
0 commit comments