Skip to content

Commit

Permalink
change param default value
Browse files Browse the repository at this point in the history
  • Loading branch information
Marie Laurent committed Jul 25, 2024
1 parent 001add6 commit 8821e25
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion data/hts/edgt_44/filtered.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ def configure(context):
context.stage("data.hts.edgt_44.cleaned")
context.stage("data.spatial.codes")

context.config("filter_hts",False)
context.config("filter_hts",True)
def execute(context):
filter_edgt = context.config("filter_hts")
df_codes = context.stage("data.spatial.codes")
Expand Down
2 changes: 1 addition & 1 deletion data/hts/edgt_lyon/filtered.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def configure(context):

context.stage("data.spatial.codes")

context.config("filter_hts",False)
context.config("filter_hts",True)
def execute(context):
filter_edgt = context.config("filter_hts")
df_codes = context.stage("data.spatial.codes")
Expand Down
2 changes: 1 addition & 1 deletion data/hts/egt/filtered.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def configure(context):
context.stage("data.hts.egt.cleaned")
context.stage("data.spatial.codes")

context.config("filter_hts",False)
context.config("filter_hts",True)
def execute(context):
filter_egt = context.config("filter_hts")
df_codes = context.stage("data.spatial.codes")
Expand Down
2 changes: 1 addition & 1 deletion data/hts/entd/filtered.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def configure(context):
context.stage("data.hts.entd.cleaned")
context.stage("data.spatial.codes")

context.config("filter_hts",False)
context.config("filter_hts",True)
def execute(context):
filter_entd = context.config("filter_hts")
df_codes = context.stage("data.spatial.codes")
Expand Down

0 comments on commit 8821e25

Please sign in to comment.