Skip to content

Commit ba07b93

Browse files
authored
Fix package init (#1572)
New formatter removed the imports without __all__.
1 parent 227a16c commit ba07b93

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/datadog_api_client/__init__.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
11
# Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
22
# This product includes software developed at Datadog (https://www.datadoghq.com/).
33
# Copyright 2019-Present Datadog, Inc.
4+
5+
from datadog_api_client.api_client import ApiClient, AsyncApiClient, ThreadedApiClient
6+
from datadog_api_client.configuration import Configuration
7+
8+
9+
__all__ = ["ApiClient", "AsyncApiClient", "ThreadedApiClient", "Configuration"]

0 commit comments

Comments
 (0)