Skip to content

Commit

Permalink
Fix breaking compatibility with Python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
damian3031 committed Nov 26, 2024
1 parent 2e08c8a commit 4569f6d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dbt/adapters/trino/impl.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from dataclasses import dataclass
from typing import Dict, Optional
from typing import Dict, List, Optional

import agate
from dbt.adapters.base.impl import AdapterConfig, ConstraintSupport
Expand Down Expand Up @@ -53,7 +53,7 @@ def __init__(self, config, mp_context) -> None:
self.connections = self.ConnectionManager(config, mp_context, self.behavior)

@property
def _behavior_flags(self) -> list[BehaviorFlag]:
def _behavior_flags(self) -> List[BehaviorFlag]:
return [
{ # type: ignore
"name": "require_certificate_validation",
Expand Down

0 comments on commit 4569f6d

Please sign in to comment.