Skip to content

Commit

Permalink
Make Ruff happy
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon committed Feb 6, 2024
1 parent 0fc435f commit 0c33c07
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions target_postgres/connector.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""Handles Postgres interactions."""


from __future__ import annotations

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

return PostgresConnector.pick_best_sql_type(sql_type_array=sql_type_array)

def pick_individual_type(self, jsonschema_type: dict):
def pick_individual_type(self, jsonschema_type: dict): # noqa: PLR0911
"""Select the correct sql type assuming jsonschema_type has only a single type.
Args:
Expand Down

0 comments on commit 0c33c07

Please sign in to comment.