Skip to content

Commit 9b35427

Browse files
committed
Fix help string
1 parent d1e3503 commit 9b35427

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

causal_testing/main.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -593,8 +593,10 @@ def parse_args(args: Optional[Sequence[str]] = None) -> argparse.Namespace:
593593
parser_discover.add_argument(
594594
"-a",
595595
"--alpha",
596-
help="The significance level of the confidence intervals used to determine causality. "
597-
"This should be a value between 0 and 1. Defaults to 0.05 for 95% confidence intervals.",
596+
help=(
597+
"The significance level of the confidence intervals used to determine causality. "
598+
"This should be a value between 0 and 1. Defaults to 0.05 for 95%% confidence intervals."
599+
),
598600
default=0.05,
599601
)
600602
parser_discover.add_argument(

0 commit comments

Comments
 (0)