From 343ff50b383fa96983ee5eae4c209a8f511e1dc3 Mon Sep 17 00:00:00 2001 From: Pavel Jezek Date: Wed, 17 Jan 2024 22:25:35 +0100 Subject: [PATCH] chore: fix formatting --- tap_google_sheets/tap.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tap_google_sheets/tap.py b/tap_google_sheets/tap.py index ba6207a..8bdf0d4 100644 --- a/tap_google_sheets/tap.py +++ b/tap_google_sheets/tap.py @@ -103,7 +103,9 @@ def get_schema(self, google_sheet_data: requests.Response): schema = th.PropertiesList() for column in headings: if column: - schema.append(th.Property(re.sub("\s+", "_", column.strip()), th.StringType)) + schema.append( + th.Property(re.sub("\s+", "_", column.strip()), th.StringType) + ) return schema.to_dict()