Skip to content

Commit 6ddfdd0

Browse files
committed
Linting
1 parent 2a3a6bf commit 6ddfdd0

File tree

4 files changed

+108
-109
lines changed

4 files changed

+108
-109
lines changed

ldclient/client.py

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,11 @@
4040
DataStoreStatusProvider, DataStoreUpdateSink,
4141
FeatureStore, FlagTracker)
4242
from ldclient.migrations import OpTracker, Stage
43-
from ldclient.versioned_data_kind import FEATURES, SEGMENTS, VersionedDataKind
44-
from ldclient.plugin import SdkMetadata, ApplicationMetadata, EnvironmentMetadata
43+
from ldclient.plugin import (ApplicationMetadata, EnvironmentMetadata,
44+
SdkMetadata)
4545
from ldclient.version import VERSION
46-
46+
from ldclient.versioned_data_kind import FEATURES, SEGMENTS, VersionedDataKind
47+
4748
from .impl import AnyNum
4849

4950

@@ -287,14 +288,14 @@ def __get_environment_metadata(self):
287288
wrapper_name=self._config.wrapper_name,
288289
wrapper_version=self._config.wrapper_version
289290
)
290-
291+
291292
application_metadata = None
292293
if self._config.application:
293294
application_metadata = ApplicationMetadata(
294295
id=self._config.application.get('id'),
295296
version=self._config.application.get('version'),
296297
)
297-
298+
298299
return EnvironmentMetadata(
299300
sdk=sdk_metadata,
300301
application=application_metadata,

ldclient/plugin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,4 +95,4 @@ def get_hooks(self, metadata: EnvironmentMetadata) -> List[Hook]:
9595
:param metadata: Metadata about the environment in which the SDK is running
9696
:return: A list of hooks to be registered with the SDK
9797
"""
98-
return []
98+
return []

0 commit comments

Comments
 (0)