Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel.eades committed Feb 12, 2024
1 parent 701cb34 commit 15ab7aa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions copier/template.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from functools import cached_property
from pathlib import Path
from shutil import rmtree
from typing import Any, Literal, Mapping, Sequence
from typing import Any, Literal, Mapping, Sequence, Union
from warnings import warn

import dunamai
Expand Down Expand Up @@ -153,7 +153,7 @@ class Task:
Additional environment variables to set while executing the command.
"""

cmd: str | Sequence[str]
cmd: Union[str, Sequence[str]]
extra_env: Env = field(default_factory=dict)


Expand Down

0 comments on commit 15ab7aa

Please sign in to comment.