Skip to content

Commit

Permalink
Deploying to gh-pages from @ a449316 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
pixuimpou committed Jun 20, 2024
1 parent b8f1f77 commit 58ea625
Showing 1 changed file with 13 additions and 6 deletions.
19 changes: 13 additions & 6 deletions rj_smtr/br_rj_riodejaneiro_recursos/flows.html
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@ <h1 class="title">Module <code>pipelines.rj_smtr.br_rj_riodejaneiro_recursos.flo
from pipelines.rj_smtr.tasks import get_current_timestamp

from pipelines.rj_smtr.flows import default_capture_flow, default_materialization_flow
from pipelines.rj_smtr.schedules import every_day

# from pipelines.rj_smtr.schedules import every_day


# CAPTURA DOS TICKETS #
Expand Down Expand Up @@ -135,9 +136,11 @@ <h1 class="title">Module <code>pipelines.rj_smtr.br_rj_riodejaneiro_recursos.flo
]

table_params = task(
lambda tables, exclude: [t for t in tables if t[&#34;table_id&#34;] not in exclude]
if exclude is not None
else tables,
lambda tables, exclude: (
[t for t in tables if t[&#34;table_id&#34;] not in exclude]
if exclude is not None
else tables
),
checkpoint=False,
name=&#34;get_tables_to_run&#34;,
)(tables=constants.SUBSIDIO_SPPO_RECURSOS_TABLE_IDS.value, exclude=exclude)
Expand Down Expand Up @@ -226,7 +229,7 @@ <h1 class="title">Module <code>pipelines.rj_smtr.br_rj_riodejaneiro_recursos.flo
)

# Schedule
subsidio_sppo_recurso.schedule = every_day</code></pre>
# subsidio_sppo_recurso.schedule = every_day</code></pre>
</details>
</section>
<section>
Expand All @@ -245,7 +248,11 @@ <h2 class="section-title" id="header-functions">Functions</h2>
<summary>
<span>Expand source code</span>
</summary>
<pre><code class="python">lambda tables, exclude: [t for t in tables if t[&#34;table_id&#34;] not in exclude]</code></pre>
<pre><code class="python">lambda tables, exclude: (
[t for t in tables if t[&#34;table_id&#34;] not in exclude]
if exclude is not None
else tables
),</code></pre>
</details>
</dd>
<dt id="pipelines.rj_smtr.br_rj_riodejaneiro_recursos.flows.wait_captura_false"><code class="name flex">
Expand Down

0 comments on commit 58ea625

Please sign in to comment.