Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sunny0826 committed Sep 18, 2023
1 parent d71eaf7 commit fe985d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sky/clouds/service_catalog/data_fetchers/fetch_gcp.py
Original file line number Diff line number Diff line change
Expand Up @@ -532,8 +532,8 @@ def get_catalog_df(region_prefix: str) -> pd.DataFrame:
args = parser.parse_args()

SINGLE_THREADED = args.single_threaded
ZONES = set(args.zones)
EXCLUDED_REGIONS = set(args.exclude)
ZONES = set(args.zones) if args.zones else set()
EXCLUDED_REGIONS = set(args.exclude) if args.exclude else set()

region_prefix_filter = '' if args.zones or args.all_regions else 'us-'
catalog_df = get_catalog_df(region_prefix_filter)
Expand Down

0 comments on commit fe985d9

Please sign in to comment.