Skip to content

Commit

Permalink
#40 Remove extra line, fix README link
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Hadley committed Mar 14, 2023
1 parent cfd3380 commit 33ccfb7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ poetry source add --secondary paramdb https://painterqubits.github.io/paramdb/re
Then the package can be installed like any other (e.g. `poetry add paramdb`).

[poetry]: https://python-poetry.org
[astropy]: https://docs.astropy.org/en/stable/index.html
[`astropy.units.quantity`]: https://docs.astropy.org/en/stable/api/astropy.units.Quantity.html#astropy.units.Quantity

<!-- end installation -->

Expand All @@ -50,8 +52,6 @@ ParamDB has two main components:

See the [api reference] for more information.

[astropy]: https://docs.astropy.org/en/stable/install.html
[`astropy.units.quantity`]: https://docs.astropy.org/en/stable/api/astropy.units.Quantity.html#astropy.units.Quantity
[**parameter data**]: https://painterqubits.github.io/paramdb/parameter-data.html
[**database**]: https://painterqubits.github.io/paramdb/database.html
[api reference]: https://painterqubits.github.io/paramdb/api-reference
1 change: 0 additions & 1 deletion paramdb/_param_data/_dataclasses.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ def __init_subclass__(cls, /, kw_only: bool = True, **kwargs: Any) -> None:
# Convert subclasses into dataclasses
super().__init_subclass__()
dataclass(kw_only=kw_only, **kwargs)(cls)
dataclass_transform(kw_only_default=True)(cls)

def __getitem__(self, name: str) -> Any:
# Enable getting attributes via indexing
Expand Down

0 comments on commit 33ccfb7

Please sign in to comment.