Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Jul 27, 2024
1 parent 2250d5f commit 56ef80a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions singer_sdk/_singerlib/schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,19 +132,19 @@ def from_dict(
... "properties": {
... "firstName": {
... "type": "string",
... "description": "The person's first name."
... "description": "The person's first name.",
... },
... "lastName": {
... "type": "string",
... "description": "The person's last name."
... "description": "The person's last name.",
... },
... "age": {
... "description": "Age in years which must be equal to or greater than zero.",
... "type": "integer",
... "minimum": 0
... }
... "minimum": 0,
... },
... },
... "required": ["firstName", "lastName"]
... "required": ["firstName", "lastName"],
... }
>>> schema = Schema.from_dict(data)
>>> schema.title
Expand Down

0 comments on commit 56ef80a

Please sign in to comment.