Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/DataDriver/DataDriver.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
import traceback
from glob import glob
from pathlib import Path
from typing import Any, Dict, List, Optional, Union # type: ignore
from typing import Any, Dict, List, Optional, Type, Union # type: ignore

from robot.api.logger import console # type: ignore
from robot.libraries.BuiltIn import BuiltIn # type: ignore
Expand Down Expand Up @@ -1357,7 +1357,7 @@ def __init__(
lineterminator: str = "\r\n",
*,
sheet_name: Union[str, int] = 0,
reader_class: Optional[Union[AbstractReaderClass, str]] = None,
reader_class: Optional[Union[Type[AbstractReaderClass], str]] = None,
file_search_strategy: str = "PATH",
file_regex: str = r"(?i)(.*?)(\.csv)",
include: Optional[str] = None,
Expand Down
Empty file added src/DataDriver/py.typed
Empty file.