Skip to content
This repository was archived by the owner on Nov 24, 2025. It is now read-only.

Commit cf6a55c

Browse files
committed
Remove legacy debugging
1 parent 0c35cb1 commit cf6a55c

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ message: If you use this software, please cite it using these metadata.
33
title: Get AWS Regions Package
44
abstract: A simple package for retrieving a list of AWS regions.
55
type: software
6-
version: 0.1.1
6+
version: 0.1.2
77
date-released: 2024-06-27
88
repository-code: https://github.com/AWSToolbox/get-aws-regions-package
99
keywords:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
setup(
1414
name='wolfsoftware.get-aws-regions',
15-
version='0.1.1',
15+
version='0.1.2',
1616
author='Wolf Software',
1717
author_email='[email protected]',
1818
description='A simple package for retrieving a list of AWS regions.',

wolfsoftware/get_aws_regions/functions.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,6 +214,5 @@ def get_region_list(
214214
region_descriptions: Dict[str, str] = _fetch_region_descriptions(region_names, profile_name)
215215
for region in filtered_regions:
216216
region['GeographicalLocation'] = region_descriptions.get(region['RegionName'], "Unknown")
217-
print("Filtered Regions with Details:", filtered_regions) # Debug print
218217
return filtered_regions
219218
return [region['RegionName'] for region in filtered_regions]

0 commit comments

Comments
 (0)