Skip to content

Commit 25eae48

Browse files
authored
Add missing @staticmethod
1 parent eb2bc8b commit 25eae48

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cuda_core/cuda/core/experimental/_module.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ def from_object(module: Union[bytes, str], *, symbol_mapping: Optional[dict] = N
381381
them (default to no mappings).
382382
"""
383383
return ObjectCode._init(module, "object", symbol_mapping=symbol_mapping)
384-
384+
@staticmethod
385385
def from_library(module: Union[bytes, str], *, symbol_mapping: Optional[dict] = None) -> "ObjectCode":
386386
"""Create an :class:`ObjectCode` instance from an existing library.
387387

0 commit comments

Comments
 (0)