Skip to content

Commit 9ed7204

Browse files
committed
fix: 💄 linter
1 parent 5181197 commit 9ed7204

File tree

7 files changed

+10
-11
lines changed

7 files changed

+10
-11
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,4 @@ profile = "black"
3636
[tool.pytest.ini_options]
3737
minversion = "7.0"
3838
addopts = "-p no:warnings"
39-
testpaths = ["tests"]
39+
testpaths = ["tests"]

tests/dummy_gummy/dbt_project.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,3 @@ seeds:
2222
models:
2323
dummy_gummy:
2424
+materialized: view
25-

tests/dummy_gummy/models/base/base_customers.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ WITH customers AS (
44
),
55

66
final AS (
7-
SELECT
7+
SELECT
88
id as customer_id,
99
name,
1010
created_at
1111
FROM customers
1212
)
1313

1414
SELECT *
15-
FROM final
15+
FROM final

tests/dummy_gummy/models/base/base_orders.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ final AS (
1212
FROM orders
1313
)
1414

15-
SELECT *
16-
FROM final
15+
SELECT *
16+
FROM final

tests/dummy_gummy/models/base/base_potatoes.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ WITH potatoes AS (
33
FROM {{ ref('raw_potatoes')}}
44
),
55
final AS (
6-
SELECT
6+
SELECT
77
id AS potato_id,
88
name,
99
color,
@@ -15,4 +15,4 @@ final AS (
1515
)
1616

1717
SELECT *
18-
FROM final
18+
FROM final

tests/dummy_gummy/models/orders.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ potato_sales AS (
2929
),
3030

3131
final AS (
32-
SELECT
32+
SELECT
3333
customer_name,
3434
potato_name,
3535
orders,
@@ -40,4 +40,4 @@ final AS (
4040
)
4141

4242
SELECT *
43-
FROM final
43+
FROM final

tests/dummy_gummy/models/sources.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ sources:
2424
- name: potato_id
2525
data_type: numeric
2626
- name: quantity
27-
data_type: numeric
27+
data_type: numeric

0 commit comments

Comments
 (0)