Skip to content

Commit 762e18d

Browse files
committed
Remove version check that is not much needed anymore (for DefaultDict)
1 parent 7f2d544 commit 762e18d

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

pubsub/pubsub.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
'Simple message publisher/subscriber service'
22

3-
import sys
4-
assert sys.version_info[:3] >= (3, 6, 1), "Requires 3.6.1 or later"
5-
63
from typing import List, Tuple, DefaultDict, Set, Optional, NamedTuple, Deque, Dict
74
from collections import deque, defaultdict
85
import hashlib

0 commit comments

Comments
 (0)