From da8b03787517167335ed8c86b99bde749261c527 Mon Sep 17 00:00:00 2001 From: Loren Siebert Date: Wed, 15 Jan 2025 16:28:57 -0800 Subject: [PATCH] flake8 --- src/sinker/utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/sinker/utils.py b/src/sinker/utils.py index 79e606f..13b7fc0 100644 --- a/src/sinker/utils.py +++ b/src/sinker/utils.py @@ -6,8 +6,8 @@ def parse_schema_tables(view_select_query: str) -> Tuple[str, Set[str]]: """ - Given a view select query, return a primary parent table and the set of unique tables that are referenced in the query. - Skip anything that looks like a function call. + Given a view select query, return a primary parent table and the set of unique tables that are referenced in the + query. Skip anything that looks like a function call. :param view_select_query: The select query from the view """ parsed = sqlglot.parse_one(view_select_query)