Skip to content

Commit 2ca4af0

Browse files
committed
Fix lint
1 parent 82bb228 commit 2ca4af0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ldclient/impl/datasystem/fdv2.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import logging
22
import time
3+
from queue import Empty, Queue
34
from threading import Event, Thread
45
from typing import Any, Callable, Dict, List, Mapping, Optional
5-
from queue import Queue, Empty
66

77
from ldclient.config import Builder, Config, DataSystemConfig
88
from ldclient.feature_store import _FeatureStoreDataSetSorter
@@ -435,7 +435,7 @@ def _consume_synchronizer_results(
435435
436436
:return: Tuple of (should_remove_sync, fallback_to_fdv1)
437437
"""
438-
action_queue = Queue()
438+
action_queue: Queue = Queue()
439439
timer = RepeatingTask(
440440
label="FDv2-sync-cond-timer",
441441
interval=10,

0 commit comments

Comments
 (0)