This commit is contained in:
Noah 2022-11-19 16:35:14 -08:00 committed by GitHub
commit 6bb7e5f141
1 changed files with 6 additions and 1 deletions

View File

@ -9,7 +9,12 @@ import time
import signal
import logging
import argparse
from collections import Sequence
#Since Python 3.10: Sequence is located on "collections.abc" instead of "collections"
if (sys.version_info >= (3,10)):
from collections.abc import Sequence
else:
from collections import Sequence
__version__ = "0.1"
__license__ = "MIT License"