Skip to content

Commit 1bbb429

Browse files
ddelangetkem
authored andcommitted
Deprecate dummy_threading fallback import
1 parent f504e1d commit 1bbb429

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/cachetools/func.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,7 @@
66
import math
77
import random
88
import time
9-
10-
try:
11-
from threading import Condition
12-
except ImportError: # pragma: no cover
13-
from dummy_threading import Condition
9+
from threading import Condition
1410

1511
from . import FIFOCache, LFUCache, LRUCache, RRCache, TTLCache
1612
from . import cached

0 commit comments

Comments
 (0)