Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
genzgd committed Oct 31, 2023
1 parent 7641261 commit 685d6eb
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
4 changes: 1 addition & 3 deletions tests/integration/adapter/basic/test_basic.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
import os

import pytest
from dbt.tests.util import (
run_dbt,
)
from dbt.tests.util import run_dbt

# CSV content with boolean column type.
seeds_boolean_csv = """
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,13 @@
import pytest
from dbt.tests.adapter.basic.files import model_base, schema_base_yml, seeds_base_csv
from dbt.tests.adapter.basic.test_base import BaseSimpleMaterializations
from dbt.tests.util import run_dbt, check_relation_types, relation_from_name, check_result_nodes_by_name, \
check_relations_equal
from dbt.tests.util import (
check_relation_types,
check_relations_equal,
check_result_nodes_by_name,
relation_from_name,
run_dbt,
)

from tests.integration.adapter.basic.test_basic import base_seeds_schema_yml

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -146,5 +146,3 @@ def models(self):
"incremental.sql": incremental_sql,
"schema.yml": schema_base_yml,
}


0 comments on commit 685d6eb

Please sign in to comment.