Fixed incorrect exports and typing

This commit is contained in:
2024-11-13 17:50:08 +00:00
parent 7a834fe09d
commit 9646dfe34c

View File

@@ -1,11 +1,7 @@
from pathlib import Path from typing import List
from typing import List, Tuple
from numpy import ndarray 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_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: ...