Skip to content

Commit 2c2d2db

Browse files
author
Andrei Neagu
committed
added missing type
1 parent a169f73 commit 2c2d2db

File tree

1 file changed

+1
-1
lines changed
  • packages/pytest-simcore/src/pytest_simcore/helpers

1 file changed

+1
-1
lines changed

packages/pytest-simcore/src/pytest_simcore/helpers/comparing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def get_relative_to(folder: Path, file: Path) -> str:
1414
return f"{file.relative_to(folder)}"
1515

1616

17-
async def assert_same_file_content(path_1: Path, path_2: Path):
17+
async def assert_same_file_content(path_1: Path, path_2: Path) -> None:
1818
async with aiofiles.open(path_1, "rb") as f1, aiofiles.open(path_2, "rb") as f2:
1919
checksum_1 = await create_sha256_checksum(f1)
2020
checksum_2 = await create_sha256_checksum(f2)

0 commit comments

Comments
 (0)