We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1a37b6e commit 997063aCopy full SHA for 997063a
warp/_src/codegen.py
@@ -533,7 +533,7 @@ class StructType(ctypes.Structure):
533
getter.__annotations__ = {}
534
535
# Find the name of the first argument (conventionally 'self')
536
- argspec = inspect.getfullargspec(getter)
+ argspec = get_full_arg_spec(getter)
537
if len(argspec.args) > 0:
538
self_arg = argspec.args[0]
539
getter.__annotations__[self_arg] = self
0 commit comments