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
5 changes: 2 additions & 3 deletions docs/Config_and_Macros.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,8 @@ FastFlowTransform discovers models under `<project>/models/` with two primary fl
create or replace table users as
select id, email
from {{ source('crm', 'users') }};
````
```

<a id="12-python-models-ffpy"></a>
### 1.2 Python models (`*.ff.py`)

Use the `@model` decorator from `fastflowtransform.core` to register a callable. The decorator accepts:
Expand Down Expand Up @@ -144,7 +143,7 @@ Allowed values are case-insensitive strings or tuples. If the engine does not ma

```yaml
# sources.yml
version: 2
version: 1

sources:
- name: crm
Expand Down
Loading