Skip to content

Commit 997063a

Browse files
committed
Use
Signed-off-by: Alexandre Ghelfi <alexandre.ghelfi@helsing.ai>
1 parent 1a37b6e commit 997063a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

warp/_src/codegen.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -533,7 +533,7 @@ class StructType(ctypes.Structure):
533533
getter.__annotations__ = {}
534534

535535
# Find the name of the first argument (conventionally 'self')
536-
argspec = inspect.getfullargspec(getter)
536+
argspec = get_full_arg_spec(getter)
537537
if len(argspec.args) > 0:
538538
self_arg = argspec.args[0]
539539
getter.__annotations__[self_arg] = self

0 commit comments

Comments
 (0)