We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2dfc91b commit 47510acCopy full SHA for 47510ac
packages/robot/src/robotcode/robot/utils/robot_path.py
@@ -6,7 +6,7 @@
6
7
def find_file_ex(
8
path: Union[Path, "PathLike[str]", str],
9
- basedir: Union[Path, PathLike[str], str] = ".",
+ basedir: Union[Path, "PathLike[str]", str] = ".",
10
file_type: Optional[str] = None,
11
) -> str:
12
from robot.errors import DataError
@@ -33,7 +33,7 @@ def find_file_ex(
33
34
def find_file(
35
36
37
38
39
return find_file_ex(path, basedir, file_type)
0 commit comments