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()