Skip to content

Commit

Permalink
lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jehangiramjad committed Jan 22, 2024
1 parent 2dd6e13 commit a458050
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion import-automation/executor/app/executor/cloud_scheduler.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@
from google.protobuf import json_format
from google.api_core.exceptions import AlreadyExists, NotFound

GKE_SERVICE_DOMAIN = os.getenv('GKE_SERVICE_DOMAIN', 'importautomation.datacommons.org')
GKE_SERVICE_DOMAIN = os.getenv('GKE_SERVICE_DOMAIN',
'importautomation.datacommons.org')
GKE_CALLER_SERVICE_ACCOUNT = os.getenv('CLOUD_SCHEDULER_CALLER_SA')
GKE_OAUTH_AUDIENCE = os.getenv('CLOUD_SCHEDULER_CALLER_OAUTH_AUDIENCE')

Expand Down
5 changes: 3 additions & 2 deletions import-automation/executor/test/integration_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,11 @@

CONFIGS = {
# TODO: read the params from the environment.
'github_repo_owner_username': 'datacommonsorg', # os.environ['GITHUB_AUTH_USERNAME'],
'github_repo_owner_username':
'datacommonsorg', # os.environ['GITHUB_AUTH_USERNAME'],
'github_repo_name': 'data-demo',
'github_auth_username': '[email protected]',
'github_auth_access_token': '' # os.environ['GITHUB_AUTH_ACCESS_TOKEN']
'github_auth_access_token': '' # os.environ['GITHUB_AUTH_ACCESS_TOKEN']
}


Expand Down

0 comments on commit a458050

Please sign in to comment.