Skip to content

Commit

Permalink
fix: Fix Python 3.8 support
Browse files Browse the repository at this point in the history
  • Loading branch information
tkarabela committed May 5, 2024
1 parent cf2fd14 commit c3f8ec9
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions pysubs2/ssafile.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
from collections.abc import MutableSequence
import io
from io import open
from itertools import chain
import os.path
import logging
from typing import Optional, List, Dict, Iterable, Any, overload, Iterator, TextIO, Tuple
from typing import Optional, List, Dict, Iterable, Any, overload, Iterator, TextIO, Tuple, MutableSequence

from .common import IntOrFloat
from .formats import autodetect_format, get_format_class, get_format_identifier
Expand Down

0 comments on commit c3f8ec9

Please sign in to comment.