From bfe3c8b009bd3021d2372dc7b7a29dee0e082bfa Mon Sep 17 00:00:00 2001 From: eriksynn <159293101+eriksynn@users.noreply.github.com> Date: Mon, 20 May 2024 21:01:28 -0400 Subject: [PATCH] Switch to built-in list to align with Deb's PR #179 changes. --- rules-engine/tests/test_rules_engine/test_examples.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rules-engine/tests/test_rules_engine/test_examples.py b/rules-engine/tests/test_rules_engine/test_examples.py index 5c99770e..28b51d65 100644 --- a/rules-engine/tests/test_rules_engine/test_examples.py +++ b/rules-engine/tests/test_rules_engine/test_examples.py @@ -42,7 +42,7 @@ class NaturalGasBillingRecordExampleInput(NaturalGasBillingRecordInput): # Then overload NG Billing Input to contain new NG Billing Record Example Input subclass class NaturalGasBillingExampleInput(NaturalGasBillingInput): - records: List[NaturalGasBillingRecordExampleInput] + records: list[NaturalGasBillingRecordExampleInput] class Example(BaseModel):