From 833f5bf9979e716118414792ce7fcdfcea6e694a Mon Sep 17 00:00:00 2001 From: Anthony Berg Date: Wed, 3 Sep 2025 18:07:13 +0200 Subject: [PATCH] fix(gpu): typing for dictionary in parameter --- GPUSimulators/gpu/cuda_context.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GPUSimulators/gpu/cuda_context.py b/GPUSimulators/gpu/cuda_context.py index a22bcb7..1e8bfbf 100644 --- a/GPUSimulators/gpu/cuda_context.py +++ b/GPUSimulators/gpu/cuda_context.py @@ -110,7 +110,7 @@ class CudaContext(Context): def get_module(self, kernel_filename: str, function: str, include_dirs: dict = None, - defines: dict[str: dict] = None, + defines: dict[str, dict] = None, compile_args: dict = None, jit_compile_args: dict = None) -> cuda.Module: """