Skip to content

Commit

Permalink
Internal changes.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 705878352
  • Loading branch information
Google Earth Engine Authors committed Dec 13, 2024
1 parent 8cb40ea commit 595b7ed
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
4 changes: 3 additions & 1 deletion python/ee/cli/eecli.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,9 @@ def _run_command(*argv):

args = parser.parse_args()
config = utils.CommandLineConfig(
args.ee_config, args.service_account_file, args.project_override
config_file=args.ee_config,
service_account_file=args.service_account_file,
project_override=args.project_override,
)

# Catch EEException errors, which wrap server-side Earth Engine
Expand Down
9 changes: 6 additions & 3 deletions python/ee/cli/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
import tempfile
import threading
import time
from typing import AnyStr, Dict, Iterable, List, Tuple, Union
from typing import Any, AnyStr, Dict, Iterable, List, Optional, Tuple, Union
import urllib.parse

from google.cloud import storage
Expand Down Expand Up @@ -71,8 +71,11 @@ class CommandLineConfig:
url: str

def __init__(
self, config_file=None, service_account_file=None,
project_override=None):
self,
config_file=None,
service_account_file=None,
project_override=None,
):
if not config_file:
config_file = os.environ.get(EE_CONFIG_FILE, DEFAULT_EE_CONFIG_FILE)
self.config_file = config_file
Expand Down

0 comments on commit 595b7ed

Please sign in to comment.