Skip to content

Commit

Permalink
Fix Typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
bacciotti committed May 3, 2024
1 parent cd62596 commit f55f900
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nise/generators/aws/ec2_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ class EC2Generator(AWSGenerator):

ARCHS = ("32-bit", "64-bit")

OPERATING_SYSTEM = (
OPERATING_SYSTEMS = (
"Amazon Linux",
"Ubuntu",
"Windows Server",
Expand All @@ -101,7 +101,7 @@ def __init__(self, start_date, end_date, currency, payer_account, usage_accounts
self._resource_id = "i-{}".format(self.fake.ean8())
self._product_sku = self.fake.pystr(min_chars=12, max_chars=12).upper()
self._instance_type = choice(self.INSTANCE_TYPES)
self._operating_system = choice(self.OPERATING_SYSTEM)
self._operating_system = choice(self.OPERATING_SYSTEMS)
if self.attributes:
if self.attributes.get("processor_arch"):
self._processor_arch = self.attributes.get("processor_arch")
Expand Down

0 comments on commit f55f900

Please sign in to comment.