Skip to content

Commit c692ba6

Browse files
committed
Loosened required positional arguments
1 parent db3abb3 commit c692ba6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

kernel_tuner/searchspace.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,8 @@ def __init__(
7070
tune_params = from_cache["tune_params"]
7171
if from_cache is None:
7272
assert (
73-
tune_params is not None and restrictions is not None and max_threads is not None
74-
), "Must specify positional arugments ."
73+
tune_params is not None and max_threads is not None
74+
), "Must specify positional arguments."
7575

7676
# set the object attributes using the arguments
7777
framework_l = framework.lower()

0 commit comments

Comments
 (0)