Skip to content

Commit

Permalink
Merge branch 'master' into fix/column-whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
ReubenFrankel committed Jan 17, 2024
2 parents 107d7b5 + bea2c2f commit ce92cf8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

name: Test tap-google-sheets

on: [push]
on: [push, pull_request]

jobs:
linting:
Expand Down
4 changes: 2 additions & 2 deletions tap_google_sheets/auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import requests
from singer_sdk.authenticators import OAuthAuthenticator, SingletonMeta
from singer_sdk.helpers._util import utc_now
from singer_sdk.streams import Stream as RESTStreamBase
from singer_sdk.streams import RESTStream


class GoogleSheetsAuthenticator(OAuthAuthenticator, metaclass=SingletonMeta):
Expand All @@ -30,7 +30,7 @@ class ProxyGoogleSheetsAuthenticator(OAuthAuthenticator, metaclass=SingletonMeta

def __init__(
self,
stream: RESTStreamBase,
stream: RESTStream,
auth_endpoint=None,
oauth_scopes=None,
auth_headers=None,
Expand Down

0 comments on commit ce92cf8

Please sign in to comment.