From 9646dfe34c9d9bc9407973011fecfe8cff3acebf Mon Sep 17 00:00:00 2001 From: Cian Hughes Date: Wed, 13 Nov 2024 17:50:08 +0000 Subject: [PATCH] Fixed incorrect exports and typing --- read_layers.pyi | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/read_layers.pyi b/read_layers.pyi index be105cb..d2aaa96 100644 --- a/read_layers.pyi +++ b/read_layers.pyi @@ -1,11 +1,7 @@ -from pathlib import Path -from typing import List, Tuple +from typing import List from numpy import ndarray -def read_selected_layers(file_list: List[Path]) -> ndarray: ... +def read_layers(folder: str) -> ndarray: ... +def read_selected_layers(file_list: List[str]) -> ndarray: ... def read_layer(file: str) -> ndarray: ... -def read_file(filepath: Path) -> Tuple[ndarray, float, int]: ... -def get_z(filepath: Path) -> float: ... -def correct_x(x: float) -> None: ... -def correct_y(y: float) -> None: ...