Skip to content

Commit fadf411

Browse files
committed
Trim whitespace
1 parent 8fcd8fb commit fadf411

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

ldclient/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ def __start_up(self, start_wait: float):
284284
log.info("Started LaunchDarkly Client in LDD mode")
285285

286286
diagnostic_accumulator = self._set_event_processor(self._config)
287-
287+
288288
# Pass diagnostic accumulator to data system for streaming metrics
289289
self._data_system.set_diagnostic_accumulator(diagnostic_accumulator)
290290

ldclient/impl/datasystem/fdv1.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def __init__(self, config: Config):
7575

7676
# Update processor created in start(), because it needs the ready Event
7777
self._update_processor: Optional[UpdateProcessor] = None
78-
78+
7979
# Diagnostic accumulator provided by client for streaming metrics
8080
self._diagnostic_accumulator = None
8181

@@ -113,15 +113,14 @@ def stop(self):
113113
def store(self) -> FeatureStore:
114114
return self._store_wrapper
115115

116-
117116
def set_flag_value_eval_fn(self, eval_fn):
118117
"""
119118
Injects the flag value evaluation function used by the flag tracker to
120119
compute FlagValueChange events. The function signature should be
121120
(key: str, context: Context) -> Any.
122121
"""
123122
self._flag_tracker_impl = FlagTrackerImpl(self._flag_change_listeners, eval_fn)
124-
123+
125124
def set_diagnostic_accumulator(self, diagnostic_accumulator):
126125
"""
127126
Sets the diagnostic accumulator for streaming initialization metrics.

0 commit comments

Comments
 (0)