Skip to content

Commit

Permalink
code changes
Browse files Browse the repository at this point in the history
  • Loading branch information
rdeshmukh15 committed Mar 4, 2024
1 parent 17e9297 commit 5e52aab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tap_google_sheets/schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ def get_sheet_schema_columns(sheet):
col_properties = {'type': ['null', 'boolean', 'string']}
column_gs_type = 'boolValue'
elif column_effective_value_type == 'numberValue':
if column_number_format_type == 'DATE_TIME':
if column_number_format_type in ['DATE_TIME', 'DATE']:
col_properties = {
'type': ['null', 'string'],
'format': 'date-time'
Expand Down

0 comments on commit 5e52aab

Please sign in to comment.