Skip to content

Commit

Permalink
Linting fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielPDWalker committed Apr 11, 2023
1 parent 2c9bd56 commit 5d74093
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion tap_google_sheets/tests/test_ignoring_unnamed_columns.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ def setUp(self):

@responses.activate()
def test_ignoring_unnamed_columns(self):

self.missing_column_response = {
"values": [
["Column_One", "", "Column_Two"],
Expand Down
5 changes: 3 additions & 2 deletions tap_google_sheets/tests/test_key_properties_setting.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,5 +52,6 @@ def test_key_properties_being_set_in_stream(self):

# Assert that the key_properties in a stream is equal to the setting key_properties
for stream in tap.catalog_dict.get("streams"):
self.assertEquals(stream.get("key_properties"), tap.config.get("key_properties"))

self.assertEquals(
stream.get("key_properties"), tap.config.get("key_properties")
)
1 change: 0 additions & 1 deletion tap_google_sheets/tests/test_underscoring_column_names.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ def setUp(self):

@responses.activate()
def test_underscoring_column_names(self):

self.column_response = {"values": [["Column One", "Column Two"], ["1", "1"]]}

responses.add(
Expand Down

0 comments on commit 5d74093

Please sign in to comment.