Skip to content

Commit 0fd0afd

Browse files
committed
Fix some sorting
1 parent 8802eb4 commit 0fd0afd

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

ldclient/impl/datasourcev2/polling.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
IntentCode,
2121
PutObject,
2222
Selector,
23-
ServerIntent,
23+
ServerIntent
2424
)
2525
from ldclient.impl.http import _http_factory
2626
from ldclient.impl.repeating_task import RepeatingTask
@@ -33,7 +33,7 @@
3333
_Success,
3434
http_error_message,
3535
is_http_error_recoverable,
36-
log,
36+
log
3737
)
3838

3939
POLLING_ENDPOINT = "/sdk/poll"

ldclient/testing/impl/datasourcev2/test_polling_initializer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
PollingDataSource,
88
PollingResult,
99
Selector,
10-
polling_payload_to_changeset,
10+
polling_payload_to_changeset
1111
)
1212
from ldclient.impl.datasystem.protocolv2 import ChangeSetBuilder, IntentCode
1313
from ldclient.impl.util import UnsuccessfulResponseException, _Fail, _Success

ldclient/testing/impl/datasourcev2/test_polling_payload_parsing.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
import json
22

3-
from ldclient.impl.datasourcev2.polling import IntentCode, polling_payload_to_changeset
3+
from ldclient.impl.datasourcev2.polling import (
4+
IntentCode,
5+
polling_payload_to_changeset
6+
)
47
from ldclient.impl.datasystem.protocolv2 import ChangeType, ObjectKind
58
from ldclient.impl.util import _Fail, _Success
69

0 commit comments

Comments
 (0)