Skip to content

Commit

Permalink
chore: fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
srpwnd committed Jan 17, 2024
1 parent ce92cf8 commit 343ff50
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tap_google_sheets/tap.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()

Expand Down

0 comments on commit 343ff50

Please sign in to comment.