From eb9634b66fd2cc4dfc8d20639fa800fa2a2e0d5e Mon Sep 17 00:00:00 2001 From: Joseph Katsioloudes Date: Mon, 3 Apr 2023 20:07:02 +0100 Subject: [PATCH] Removes warning from importing with a wildcard --- Level-1/solution.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Level-1/solution.py b/Level-1/solution.py index 0f85bd5..2efc3b6 100644 --- a/Level-1/solution.py +++ b/Level-1/solution.py @@ -1,5 +1,5 @@ from collections import namedtuple -from decimal import * +from decimal import Decimal Order = namedtuple('Order', 'id, items') Item = namedtuple('Item', 'type, description, amount, quantity')