Skip to content

Commit

Permalink
Fix import order
Browse files Browse the repository at this point in the history
  • Loading branch information
ReubenFrankel committed Mar 20, 2024
1 parent 102c24d commit 03a2705
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tap_google_sheets/tests/test_child_sheet_name_setting.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
import unittest

import responses
import singer_sdk.io_base as io
import singer_sdk._singerlib as singer
import singer_sdk.io_base as io

import tap_google_sheets.tests.utils as test_utils
from tap_google_sheets.tap import TapGoogleSheets
Expand Down
2 changes: 1 addition & 1 deletion tap_google_sheets/tests/test_ignoring_unnamed_columns.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
import unittest

import responses
import singer_sdk.io_base as io
import singer_sdk._singerlib as singer
import singer_sdk.io_base as io

import tap_google_sheets.tests.utils as test_utils
from tap_google_sheets.tap import TapGoogleSheets
Expand Down
2 changes: 1 addition & 1 deletion tap_google_sheets/tests/test_underscoring_column_names.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
import unittest

import responses
import singer_sdk.io_base as io
import singer_sdk._singerlib as singer
import singer_sdk.io_base as io

import tap_google_sheets.tests.utils as test_utils
from tap_google_sheets.tap import TapGoogleSheets
Expand Down

0 comments on commit 03a2705

Please sign in to comment.