mirror of
https://github.com/Cian-H/read_aconity_layers.git
synced 2026-07-03 13:45:00 +01:00
ada32e43a9
* 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
8 lines
202 B
Python
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: ...
|