From 677475f750c588e154381688c6f12a7d99978fb9 Mon Sep 17 00:00:00 2001 From: rzmk <30333942+rzmk@users.noreply.github.com> Date: Tue, 5 May 2026 16:43:34 -0400 Subject: [PATCH] fix: update error type to CKANError --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index c49f83f..440cf4a 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -345,7 +345,7 @@ impl CKAN { id: String, use_default_schema: Option, include_plugin_data: Option, - ) -> Result> { + ) -> Result { post!(&self, "package_show", (json id), use_default_schema, include_plugin_data) }