Skip to content

Commit dc03d50

Browse files
committed
Upgrade some typing bits
1 parent efda6c9 commit dc03d50

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

git_crecord/crpatch.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@
1414
import re
1515
from codecs import register_error
1616
from gettext import gettext as _
17-
from typing import IO, Iterator, Optional, Sequence, Union
17+
from typing import IO, Optional, Union
18+
from collections.abc import Iterator, Sequence
1819

1920
from .util import unwrap_filename
2021

git_crecord/util.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ def system(cmd, cwd=None, onerr=None, errprefix=None):
6969
def systemcall(
7070
cmd: Sequence[str] | Sequence[bytes],
7171
encoding: str,
72-
dir: Optional[os.PathLike | str] = None,
72+
dir: os.PathLike | str | None = None,
7373
onerr=None,
7474
errprefix=None,
7575
) -> str:
@@ -79,7 +79,7 @@ def systemcall(
7979
@overload
8080
def systemcall(
8181
cmd: Sequence[str] | Sequence[bytes],
82-
dir: Optional[os.PathLike | str] = None,
82+
dir: os.PathLike | str | None = None,
8383
onerr=None,
8484
errprefix=None,
8585
) -> bytes:

0 commit comments

Comments
 (0)