Skip to content

Commit

Permalink
apply linting
Browse files Browse the repository at this point in the history
  • Loading branch information
Tburm committed Sep 3, 2024
1 parent 3294a61 commit 9b6422d
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 10 deletions.
1 change: 1 addition & 0 deletions transformers/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ pandas
pyarrow
psycopg2-binary
dbt-postgres
sqlfluff
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
SELECT
DISTINCT "timestamp" AS ts,
select distinct
"timestamp" as ts,
CAST(
"number" AS INTEGER
) AS block_number
FROM
"number" as INTEGER
) as block_number
from
{{ source(
'raw_snax_mainnet',
'block'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
SELECT
DISTINCT "timestamp" AS ts,
select distinct
"timestamp" as ts,
CAST(
"number" AS INTEGER
) AS block_number
FROM
"number" as INTEGER
) as block_number
from
{{ source(
'raw_snax_testnet',
'block'
Expand Down

0 comments on commit 9b6422d

Please sign in to comment.