Skip to content
Open
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
5 changes: 4 additions & 1 deletion gen
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,7 @@ datamodel-codegen \
--url https://api.neris.fsri.org/v1/openapi.json \
--input-file-type openapi \
--output src/neris_api_client/models.py \
--output-model-type pydantic_v2.BaseModel
--output-model-type pydantic_v2.BaseModel \
--use-double-quotes

black -l 100 src/neris_api_client/models.py

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
black -l 100 src/neris_api_client/models.py
black -l 100 -t py310 src/neris_api_client/models.py

5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@ build-backend = "setuptools.build_meta"

[project]
name = "neris_api_client"
version = "1.5.3"
version = "1.5.4"
authors = [
{ name="Ben Coleman", email="ben.coleman@ul.org" },
{ name="Joseph Pagani", email="joseph.pagani@ul.org"}
{ name="Joseph Pagani", email="joseph.pagani@ul.org"},
{ name="Daniel Liu", email="daniel.liu@ul.org"}
]
description = "NERIS API Client"
readme = "README.md"
Expand Down
Loading