From c532954c77c7f5f84dc49be87974073529775cde Mon Sep 17 00:00:00 2001 From: Ciprian Voinea <34091723+cipz@users.noreply.github.com> Date: Tue, 4 Mar 2025 13:56:22 +0100 Subject: [PATCH] chore: Expose Resource class through __all__ --- googleapiclient/discovery.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/googleapiclient/discovery.py b/googleapiclient/discovery.py index f7bbd77763c..c6cc8cb3468 100644 --- a/googleapiclient/discovery.py +++ b/googleapiclient/discovery.py @@ -19,7 +19,7 @@ from __future__ import absolute_import __author__ = "jcgregorio@google.com (Joe Gregorio)" -__all__ = ["build", "build_from_document", "fix_method_name", "key2param"] +__all__ = ["build", "build_from_document", "fix_method_name", "key2param", "Resource"] from collections import OrderedDict import collections.abc