Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
teobucci committed Mar 25, 2024
1 parent 6bcdccf commit c469808
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions hawk/processes/wps_causal.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ def __init__(self):
],
),
LiteralInput(
"tefs_use_comtemporary_features",
"TEFS Use Comtemporary Features",
"tefs_use_contemporary_features",
"TEFS Use Contemporary Features",
data_type="boolean",
abstract="Choose whether to use comtemporary features in the TEFS algorithm.",
default=False,
Expand Down Expand Up @@ -162,8 +162,8 @@ def __init__(self):

super(Causal, self).__init__(
self._handler,
identifier="hello",
title="Say Hello",
identifier="causal",
title="Causal Analysis",
abstract="Just says a friendly Hello."
"Returns a literal string output with Hello plus the inputed name.",
keywords=["hello", "demo"],
Expand Down Expand Up @@ -195,7 +195,7 @@ def _handler(self, request, response):
pcmci_max_lag = request.inputs["pcmci_max_lag"][0].data

tefs_direction = request.inputs["tefs_direction"][0].data
tefs_use_comtemporary_features = request.inputs["tefs_use_comtemporary_features"][0].data
tefs_use_contemporary_features = request.inputs["tefs_use_contemporary_features"][0].data
tefs_max_lag_features = request.inputs["tefs_max_lag_features"][0].data
tefs_max_lag_target = request.inputs["tefs_max_lag_target"][0].data

Expand All @@ -210,7 +210,7 @@ def _handler(self, request, response):
pcmci_test_choice,
pcmci_max_lag,
tefs_direction,
tefs_use_comtemporary_features,
tefs_use_contemporary_features,
tefs_max_lag_features,
tefs_max_lag_target,
workdir,
Expand Down

0 comments on commit c469808

Please sign in to comment.