Skip to content

Commit

Permalink
Remove forced type on ThreadedCommands conn
Browse files Browse the repository at this point in the history
  • Loading branch information
BAntonellini committed Dec 26, 2024
1 parent 95a67d9 commit f9ec684
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions dbt_coves/tasks/blue_green/clone_db.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

from rich.console import Console
from snowflake.connector import DictCursor
from snowflake.connector.connection import SnowflakeConnection

console = Console()

Expand Down Expand Up @@ -141,7 +140,7 @@ def __init__(self, con, threads):
self.threads = threads
self.register_command_thread = 0
self.thread_commands = [[] for _ in range(self.threads)]
self.con: SnowflakeConnection = con
self.con = con
self.pending_queries = []

def register_command(self, command: str):
Expand Down

0 comments on commit f9ec684

Please sign in to comment.