Skip to content

Commit

Permalink
adjust one nit import and ref
Browse files Browse the repository at this point in the history
  • Loading branch information
McKnight-42 committed Jan 16, 2024
1 parent f2a7fc2 commit 9a55cc9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dbt/adapters/snowflake/connections.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from typing import Optional, Tuple, Union, Any, List

import agate
import dbt_common.clients.agate_helper
from dbt_common.clients.agate_helper import empty_table

from cryptography.hazmat.backends import default_backend
from cryptography.hazmat.primitives import serialization
Expand Down Expand Up @@ -476,7 +476,7 @@ def execute(
if fetch:
table = self.get_result_from_cursor(cursor, limit)
else:
table = dbt_common.clients.agate_helper.empty_table()
table = empty_table()
return response, table

def add_standard_query(self, sql: str, **kwargs) -> Tuple[Connection, Any]:
Expand Down

0 comments on commit 9a55cc9

Please sign in to comment.