From 01f7c525b254cdd8546576df7daf5cfd05824615 Mon Sep 17 00:00:00 2001 From: Pete Gadomski Date: Thu, 18 Jul 2024 10:20:12 -0600 Subject: [PATCH] fix(docs): SkipAssetDownload docstring --- CHANGELOG.md | 1 + src/stac_asset/messages.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 498f15f..bdf2577 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ### Fixed - Expand the list of exceptions on which we should retry for HTTP ([#195](https://github.com/stac-utils/stac-asset/pull/195)) +- `SkipAssetDownload` docstring ([#199](https://github.com/stac-utils/stac-asset/pull/199)) ## [0.4.1] - 2024-07-17 diff --git a/src/stac_asset/messages.py b/src/stac_asset/messages.py index f8c1dfb..d878be9 100644 --- a/src/stac_asset/messages.py +++ b/src/stac_asset/messages.py @@ -46,7 +46,7 @@ class ErrorAssetDownload(Message): @dataclass class SkipAssetDownload(Message): - """Sent when an asset errors while downloading.""" + """Sent when an asset is skipped while downloading.""" key: str """The asset key."""