Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,5 @@
"https://raw.githubusercontent.com/dbt-labs/dbt-jsonschema/main/schemas/1.5/dbt_yml_files-1.5.json": "schema.yml",
"https://raw.githubusercontent.com/dbt-labs/dbt-jsonschema/main/schemas/1.5/dbt_project-1.5.json": "dbt_project.yml"
},
"r.lsp.promptToInstall": false,
}
2 changes: 1 addition & 1 deletion models/br_ibge_inpc/br_ibge_inpc__mes_categoria_brasil.sql
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-- - Register
-- Register
{{
config(
alias="mes_categoria_brasil",
Expand Down
2 changes: 1 addition & 1 deletion models/br_ibge_ipca/br_ibge_ipca__mes_categoria_brasil.sql
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-- - Register
-- Register
{{
config(
alias="mes_categoria_brasil",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-- - Register
-- Register
{{
config(
alias="mes_categoria_brasil",
Expand Down
2 changes: 2 additions & 0 deletions pipelines/crawler/ibge_inflacao/flows.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# register flow

from prefect import Parameter, case
from prefect.run_configs import KubernetesRun
from prefect.storage import GCS
Expand Down
2 changes: 1 addition & 1 deletion pipelines/crawler/ibge_inflacao/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ def order_by_columns(table_id: str) -> list:
rename = [
"ano",
"mes",
"categoria",
"id_categoria",
"categoria",
"peso_mensal",
"variacao_mensal",
Expand Down
3 changes: 1 addition & 2 deletions pipelines/datasets/br_ibge_inpc/flows.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# pylint: disable=C0103, E1123, invalid-name

# register flow
from copy import deepcopy

from prefect.run_configs import KubernetesRun
Expand Down
4 changes: 1 addition & 3 deletions pipelines/datasets/br_ibge_ipca/flows.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
"""
Flows for br_ibge_ipca
"""
# register flow

from copy import deepcopy

Expand Down
1 change: 1 addition & 0 deletions pipelines/datasets/br_ibge_ipca15/flows.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# register flow
from copy import deepcopy

from prefect.run_configs import KubernetesRun
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
every_month_feminicidio_mensal_cisp = Schedule(
clocks=[
CronClock(
cron="5 10 * * *",
cron="40 10 * * *",
start_date=datetime(2023, 4, 25, 10, 15, 0),
labels=[
constants.BASEDOSDADOS_PROD_AGENT_LABEL.value,
Expand Down