We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c59368b commit ee581faCopy full SHA for ee581fa
pykokkos/core/translators/members.py
@@ -82,7 +82,7 @@ def extract(self, entity: PyKokkosEntity, classtypes: List[PyKokkosEntity]) -> N
82
param_begin = i + 1
83
# handle last_pass param for parallel_scan
84
if (
85
- i + 1 <= len(args)
+ i + 1 < len(args)
86
and isinstance(args[i + 1].annotation, ast.Name)
87
and args[i + 1].annotation.id == "bool"
88
):
0 commit comments