From 678e808fe3e9bb8c8d48b334b8acc540c2dc6dd7 Mon Sep 17 00:00:00 2001 From: Abhijeet Saroha Date: Thu, 10 Oct 2024 18:58:18 +0530 Subject: [PATCH] re-order the imports --- src/makim/core.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/makim/core.py b/src/makim/core.py index f08321a..2d58f00 100644 --- a/src/makim/core.py +++ b/src/makim/core.py @@ -17,6 +17,7 @@ import warnings from copy import deepcopy +from itertools import product from pathlib import Path from typing import Any, Dict, List, Optional, Union, cast @@ -485,9 +486,6 @@ def _generate_matrix_combinations( for k in keys ] - # Generate all combinations - from itertools import product - combinations = [] for combo in product(*values): combinations.append(dict(zip(keys, combo)))