Skip to content

Commit 0c33c07

Browse files
Make Ruff happy
1 parent 0fc435f commit 0c33c07

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

target_postgres/connector.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
"""Handles Postgres interactions."""
22

3-
43
from __future__ import annotations
54

65
import atexit
@@ -267,7 +266,7 @@ def to_sql_type(self, jsonschema_type: dict) -> sa.types.TypeEngine: # type: ig
267266

268267
return PostgresConnector.pick_best_sql_type(sql_type_array=sql_type_array)
269268

270-
def pick_individual_type(self, jsonschema_type: dict):
269+
def pick_individual_type(self, jsonschema_type: dict): # noqa: PLR0911
271270
"""Select the correct sql type assuming jsonschema_type has only a single type.
272271
273272
Args:

0 commit comments

Comments
 (0)