Skip to content

Commit 6920650

Browse files
committed
✨ feat: charts
Signed-off-by: nstarman <nstarman@users.noreply.github.com>
1 parent 8c6ef43 commit 6920650

64 files changed

Lines changed: 9954 additions & 201 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ import coordinax.interop
147147
148148
>>> from inspect import ismodule
149149
>>> [name for name in dir(coordinax) if ismodule(getattr(coordinax, name))]
150-
['angles', 'api', 'astro', 'core', 'distances', 'hypothesis', 'interop']
150+
['angles', 'api', 'astro', 'charts', 'core', 'distances', 'hypothesis', 'internal', 'interop']
151151
```
152152

153153
We recommend importing as needed:
Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,9 @@
1-
__all__ = ()
1+
__all__ = ("CKey", "CDict")
2+
3+
from typing import Any, TypeAlias
4+
5+
# Component key type: string for all charts (including dot-delimited product keys)
6+
CKey: TypeAlias = str
7+
8+
# Parameter dictionary type alias
9+
CDict: TypeAlias = dict[CKey, Any]

0 commit comments

Comments
 (0)