From 05ce46a8f36ecec49db8c28d7aa93fb0d510240d Mon Sep 17 00:00:00 2001 From: Jeff Albrecht Date: Wed, 6 May 2020 19:45:06 -0500 Subject: [PATCH] add badge, fix typo --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f5f974b..d412ebc 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# stac-pydantic +# stac-pydantic ![tests](https://github.com/arturo-ai/stac-pydantic/workflows/cicd/badge.svg) [Pydantic](https://pydantic-docs.helpmanual.io/) models for [STAC](https://github.com/radiantearth/stac-spec) Catalogs, Collections, and Items. ## Usage @@ -20,7 +20,7 @@ stac_catalog = { } catalog = Catalog(**stac_catalog) -assert catalog.id == "sample""" +assert catalog.id == "sample" assert catalog.links[0].href == "item.json" ```