Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#dm-docs -> #square-docs-support #62

Merged
merged 3 commits into from
Nov 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ Lander can upload pages directly to LSST the Docs for you with these configurati
- ``--aws-secret`` or ``$LTD_AWS_SECRET``.

Note: these are advanced configurations and are typically added to a CI configuration automatically or by a Documentation Engineer.
Reach out to `#dm-docs <https://lsstc.slack.com/messages/C2B6DQBAL/>`_ on Slack for help.
Reach out to `#square-docs-support <https://rubin-obs.slack.com/messages/C07QK9N14BY/>`_ on Slack for help.

Development workflow
====================
Expand Down
2 changes: 1 addition & 1 deletion src/lander/codemeta.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ class CodemetaData(BaseModel):

description: str | None = None

author: list[CodemetaPerson] | None = Field(default_factory=list)
author: list[CodemetaPerson] | None = Field([])

date_modified: datetime.datetime | None = Field(None, alias="dateModified")

Expand Down
2 changes: 1 addition & 1 deletion src/lander/ext/parser/_datamodel.py
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ class Person(BaseModel):
orcid: OrcidUrl | None = None
"""The ORCiD of the person."""

affiliations: list[Organization] | None = Field(default_factory=list)
affiliations: list[Organization] | None = Field([])
"""The person's affiliations."""

email: EmailStr | None = None
Expand Down
Loading