|
11 | 11 | from ..core.setas import setas |
12 | 12 | from ..image.core import ImageArray, ImageFile |
13 | 13 | else: |
14 | | - setas = type("setas", (), {}) |
| 14 | + Setas = type("Setas", (), {}) |
15 | 15 | Data = type("Data", (), {}) |
16 | 16 | ImageArray = type("ImageArray", (), {}) |
17 | 17 | ImageFile = type("ImageFile", (), {}) |
18 | 18 |
|
19 | 19 | Args = Tuple[Any] |
20 | 20 | Kwargs = Mapping[str, Any] |
21 | | -Single_Index = Union[str, int, Pattern] |
22 | | -Index = Union[Single_Index, Sequence[Union[int, str, Pattern]]] |
| 21 | +SingleIndex = Union[str, int, Pattern] |
| 22 | +Index = Union[SingleIndex, Sequence[Union[int, str, Pattern]]] |
23 | 23 | Filename = Union[str, Path, bool] |
24 | 24 |
|
25 | 25 | RegExp = Pattern |
26 | | -Path_Types = Filename |
| 26 | +PathTypes = Filename |
27 | 27 |
|
28 | 28 |
|
29 | 29 | # Setas |
30 | 30 | Setas_Base = Sequence[str] |
31 | 31 | Setas_Dict = Mapping[str, Index] |
32 | | -Setas = Union[Setas_Base, Setas_Dict, str, setas] |
| 32 | +Setas = Union[Setas_Base, Setas_Dict, str, Setas] |
33 | 33 |
|
34 | 34 | # Other useful types |
35 | 35 | Numeric = Union[float, int, complex] |
|
0 commit comments