Skip to content

Commit 08f5490

Browse files
committed
ruff
1 parent 02e99c9 commit 08f5490

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

packages/pytest-simcore/src/pytest_simcore/disk_usage_monitoring.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
_DEFAULT_THREADHOLD_MB = 512
88

99

10-
def pytest_addoption(parser):
10+
def pytest_addoption(parser: pytest.Parser):
1111
simcore_group = parser.getgroup("simcore")
1212
simcore_group.addoption(
1313
"--disk-usage", action="store_true", help="Enable disk usage monitoring"

packages/pytest-simcore/src/pytest_simcore/file_extra.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import logging
2-
from collections.abc import Callable
2+
from collections.abc import Callable, Iterable
33
from pathlib import Path
4-
from typing import Iterable
54

65
import pytest
76
from faker import Faker

0 commit comments

Comments
 (0)