diff options
author | Lukas Kreussel <65088241+LLukas22@users.noreply.github.com> | 2023-10-17 12:07:26 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-17 11:07:26 +0100 |
commit | f9e93f5b6909b4f680c244a0d049add181675958 (patch) | |
tree | e509752e90521d6500eb22e35e56b6322a9b6706 /candle-pyo3/py_src/candle/utils | |
parent | b355ab4e2e52b077e71aac46c286fbce033f36d6 (diff) | |
download | candle-f9e93f5b6909b4f680c244a0d049add181675958.tar.gz candle-f9e93f5b6909b4f680c244a0d049add181675958.tar.bz2 candle-f9e93f5b6909b4f680c244a0d049add181675958.zip |
Extend `stub.py` to accept external typehinting (#1102)
Diffstat (limited to 'candle-pyo3/py_src/candle/utils')
-rw-r--r-- | candle-pyo3/py_src/candle/utils/__init__.pyi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/candle-pyo3/py_src/candle/utils/__init__.pyi b/candle-pyo3/py_src/candle/utils/__init__.pyi index 61964ffc..d3b93766 100644 --- a/candle-pyo3/py_src/candle/utils/__init__.pyi +++ b/candle-pyo3/py_src/candle/utils/__init__.pyi @@ -1,7 +1,7 @@ # Generated content DO NOT EDIT from typing import Any, Callable, Dict, List, Optional, Tuple, Union, Sequence from os import PathLike -from candle.typing import _ArrayLike, Device +from candle.typing import _ArrayLike, Device, Scalar, Index from candle import Tensor, DType, QTensor @staticmethod |