Skip to content

Commit f8df16b

Browse files
committed
fix(IAM Access Groups): add import to __init__.py
1 parent 82f934f commit f8df16b

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

ibm_platform_services/__init__.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
1515

16+
"""
17+
This package provides a client library for accessing the IBM Cloud Platform Services.
18+
"""
19+
1620
from ibm_cloud_sdk_core import IAMTokenManager, DetailedResponse, BaseService, ApiException
1721

1822
from .common import get_sdk_headers
@@ -21,3 +25,4 @@
2125
from .global_catalog_v1 import GlobalCatalogV1
2226
from .global_search_v2 import GlobalSearchV2
2327
from .global_tagging_v1 import GlobalTaggingV1
28+
from .iam_access_groups_v2 import IamAccessGroupsV2

ibm_platform_services/common.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@ def get_user_agent():
4646

4747

4848
def get_sdk_headers(service_name, service_version, operation_id):
49+
# pylint: disable=unused-argument
50+
4951
"""
5052
Get the request headers to be sent in requests by the SDK
5153
"""

test/integration/test_iam_access_groups_v2.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
import os.path
2525
import datetime
2626
import random
27-
from ibm_cloud_sdk_core.authenticators import NoAuthAuthenticator
2827
from ibm_cloud_sdk_core import *
2928
from ibm_platform_services.iam_access_groups_v2 import *
3029

0 commit comments

Comments
 (0)