Skip to content

Commit faf95e0

Browse files
committed
bump dependencies
1 parent cc6c653 commit faf95e0

File tree

4 files changed

+434
-339
lines changed

4 files changed

+434
-339
lines changed

pw.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[main]
2-
requirements = ["uv==0.8.11"]
2+
requirements = ["uv==0.8.23"]
33
hash = "45210da832f9626829457a65e9e7c4d0"

pytest_robotframework/__init__.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -227,9 +227,7 @@ def call(self, fn: Callable[P, T]) -> Callable[P, T]:
227227
keyword_name = self._name or cast(str, printable_name(fn.__name__, code_style=True)) # ty:ignore[unresolved-attribute]
228228
# this doesn't really do anything in python land but we call the original robot keyword
229229
# decorator for completeness
230-
deco.keyword( # pyright:ignore[reportUnknownMemberType]
231-
name=keyword_name, tags=self._tags
232-
)(fn)
230+
deco.keyword(name=keyword_name, tags=self._tags)(fn)
233231

234232
@wraps(fn)
235233
def inner(*args: P.args, **kwargs: P.kwargs) -> T:
@@ -261,7 +259,7 @@ def truncate(arg: object) -> str:
261259
suppress = True
262260
# nullcontext is typed as returning None which pyright incorrectly marks as
263261
# unreachable. see https://github.com/DetachHead/basedpyright/issues/10
264-
context_manager: AbstractContextManager[object, bool] = ( # pyright:ignore[reportAssignmentType]
262+
context_manager: AbstractContextManager[object, bool] = ( # pyright:ignore[reportAssignmentType] # ty:ignore[invalid-assignment]
265263
(
266264
_FullStackStatusReporter(
267265
data=data,

tests/type_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def c() -> Iterator[None]:
5757
def d() -> Iterator[None]:
5858
yield
5959

60-
_ = assert_type(d, Never) # ty:ignore[type-assertion-failure]
60+
_ = assert_type(d, Never)
6161

6262
# keyword, non-context manager with wrap_context_manager=True:
6363
# expected type error

0 commit comments

Comments
 (0)