Skip to content

Commit

Permalink
Fix type from #190 (#200)
Browse files Browse the repository at this point in the history
  • Loading branch information
cidrblock authored Jul 31, 2023
1 parent f9156da commit cf0bb6b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tox_ansible/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

from dataclasses import asdict, dataclass, field
from pathlib import Path
from typing import TYPE_CHECKING, TypeVar
from typing import TYPE_CHECKING, List, TypeVar

import yaml

Expand Down Expand Up @@ -64,7 +64,7 @@ def register_config(self: T) -> None:
"""Register the ansible configuration."""
self.add_config(
"skip",
of_type=list,
of_type=List[str],
default=[],
desc="ansible configuration",
)
Expand Down

0 comments on commit cf0bb6b

Please sign in to comment.