Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
mikealfare committed Apr 19, 2024
1 parent 14cf61e commit c83679e
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions dbt/adapters/postgres/connections.py
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,5 @@ def data_type_code_to_name(cls, type_code: Union[int, str]) -> str:
if type_code in psycopg2.extensions.string_types:
return psycopg2.extensions.string_types[type_code].name
else:
warn_or_error(
TypeCodeNotFound(type_code=type_code)
)
warn_or_error(TypeCodeNotFound(type_code=type_code))
return f"unknown type_code {type_code}"

0 comments on commit c83679e

Please sign in to comment.