Skip to content

Commit

Permalink
re-order the imports
Browse files Browse the repository at this point in the history
  • Loading branch information
abhijeetSaroha committed Oct 10, 2024
1 parent f61fe03 commit 678e808
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/makim/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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)))
Expand Down

0 comments on commit 678e808

Please sign in to comment.