Skip to content

Commit 5f37346

Browse files
committed
sorting
1 parent fa152f5 commit 5f37346

File tree

1 file changed

+12
-4
lines changed

1 file changed

+12
-4
lines changed

ldclient/impl/datasourcev2/streaming.py

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,11 @@
1111

1212
from ld_eventsource import SSEClient as SSEClientImpl
1313
from ld_eventsource.actions import Action, Event, Fault
14-
from ld_eventsource.config import ConnectStrategy, ErrorStrategy, RetryDelayStrategy
14+
from ld_eventsource.config import (
15+
ConnectStrategy,
16+
ErrorStrategy,
17+
RetryDelayStrategy
18+
)
1519
from ld_eventsource.errors import HTTPStatusError
1620

1721
from ldclient.config import Config
@@ -25,14 +29,18 @@
2529
IntentCode,
2630
PutObject,
2731
Selector,
28-
ServerIntent,
32+
ServerIntent
2933
)
3034
from ldclient.impl.http import HTTPFactory, _http_factory
31-
from ldclient.impl.util import http_error_message, is_http_error_recoverable, log
35+
from ldclient.impl.util import (
36+
http_error_message,
37+
is_http_error_recoverable,
38+
log
39+
)
3240
from ldclient.interfaces import (
3341
DataSourceErrorInfo,
3442
DataSourceErrorKind,
35-
DataSourceState,
43+
DataSourceState
3644
)
3745

3846
# allows for up to 5 minutes to elapse without any data sent across the stream.

0 commit comments

Comments
 (0)