Skip to content

Commit cf0bb6b

Browse files
authored
Fix type from #190 (#200)
1 parent f9156da commit cf0bb6b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/tox_ansible/plugin.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
from dataclasses import asdict, dataclass, field
1414
from pathlib import Path
15-
from typing import TYPE_CHECKING, TypeVar
15+
from typing import TYPE_CHECKING, List, TypeVar
1616

1717
import yaml
1818

@@ -64,7 +64,7 @@ def register_config(self: T) -> None:
6464
"""Register the ansible configuration."""
6565
self.add_config(
6666
"skip",
67-
of_type=list,
67+
of_type=List[str],
6868
default=[],
6969
desc="ansible configuration",
7070
)

0 commit comments

Comments
 (0)