Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion py-kms/Etrigan.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,12 @@
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"
Expand Down