Skip to content

Commit 71306e7

Browse files
committed
Remove type hints from docstrings
Signed-off-by: Leandro Lucarella <[email protected]>
1 parent 5166b27 commit 71306e7

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

tests/utils/test_integration.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@ async def test_file_watcher(tmp_path: pathlib.Path) -> None:
1717
"""Ensure file watcher is returning paths on file events.
1818
1919
Args:
20-
tmp_path (pathlib.Path): A tmp directory to run the file watcher on.
21-
Created by pytest.
20+
tmp_path: A tmp directory to run the file watcher on. Created by pytest.
2221
"""
2322
filename = tmp_path / "test-file"
2423
file_watcher = FileWatcher(paths=[str(tmp_path)])
@@ -56,8 +55,7 @@ async def test_file_watcher_deletes(tmp_path: pathlib.Path) -> None:
5655
the file doesn't exist.
5756
5857
Args:
59-
tmp_path (pathlib.Path): A tmp directory to run the file watcher on.
60-
Created by pytest.
58+
tmp_path: A tmp directory to run the file watcher on. Created by pytest.
6159
"""
6260
filename = tmp_path / "test-file"
6361
file_watcher = FileWatcher(

0 commit comments

Comments
 (0)