Skip to content

Commit

Permalink
remove # in flow
Browse files Browse the repository at this point in the history
  • Loading branch information
tricktx committed Nov 13, 2024
1 parent 265c43d commit f2b7fb9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pipelines/utils/crawler_anatel/telefonia_movel/flows.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
get_max_date_in_table_microdados,
get_year_full,
get_semester,
#unzip,
unzip,
)
from pipelines.utils.constants import constants as utils_constants
from pipelines.utils.decorators import Flow
Expand Down Expand Up @@ -59,8 +59,8 @@
# Function dynamic parameters
# https://discourse.prefect.io/t/my-parameter-value-shows-the-same-date-every-day-how-can-i-set-parameter-value-dynamically/99
#####
# unzip_task = unzip()
new_year = get_year_full(ano)
unzip_task = unzip()
new_year = get_year_full(ano, upstream_tasks=[unzip_task])
new_semester = get_semester(semestre, upstream_tasks=[new_year])

update_tables = get_max_date_in_table_microdados(
Expand Down

0 comments on commit f2b7fb9

Please sign in to comment.