Files
read_aconity_layers/read_aconity_layers.pyi
T
Cian-H ada32e43a9 Update Toolchains (uv, ty, python, maturin, rust 2024) (#69)
* WIP: Fixed non-deterministic test error

* Updated tooling to use uv/ty instead of poetry/mypy

* Updated python/rust/maturin versions

* Added mac os to testing pipelines

* Properly enforced fixed with csv reading

* Minor tweaks for maintainability

* Minor version bump

* track npz files with git-lfs

* fix: add macos dynamic lookup linker flags for pyo3
2026-06-19 14:33:18 +01:00

8 lines
202 B
Python

from typing import List
from numpy import ndarray
def read_layers(folder: str) -> ndarray: ...
def read_selected_layers(file_list: List[str]) -> ndarray: ...
def read_layer(file: str) -> ndarray: ...