Skip to content
This repository has been archived by the owner on Sep 23, 2024. It is now read-only.

Commit

Permalink
[AP-635] Fix quote styles
Browse files Browse the repository at this point in the history
  • Loading branch information
koszti committed Apr 8, 2020
1 parent eb5e989 commit a7ecb1d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tap_snowflake/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ def get_table_columns(snowflake_conn, tables):
LOGGER.info('Getting column information for %s...', table)

# Get column data types by SHOW commands
show_columns = f"SHOW COLUMNS IN TABLE {table}"
show_columns = f'SHOW COLUMNS IN TABLE {table}'

# Convert output of SHOW commands to tables and use SQL joins to get every required information
select = f"""
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/test_tap_snowflake.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ def setUpClass(cls):
# Discover catalog object including only TEST_TYPE_MAPPING table to run detailed tests later
cls.dt_catalog = test_utils.discover_catalog(
cls.snowflake_conn,
{'tables': f"{SCHEMA_NAME}.test_type_mapping"})
{'tables': f'{SCHEMA_NAME}.test_type_mapping'})

cls.dt_stream = cls.dt_catalog.streams[0]
cls.dt_schema = cls.dt_catalog.streams[0].schema
Expand Down

0 comments on commit a7ecb1d

Please sign in to comment.