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,6 +9,11 @@ import time
import signal import signal
import logging import logging
import argparse import argparse
#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 from collections import Sequence
__version__ = "0.1" __version__ = "0.1"