Skip to content

Commit 13d096f

Browse files
committed
Per review
1 parent cdfa990 commit 13d096f

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

crates/ty_python_semantic/resources/mdtest/type_properties/is_assignable_to.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -879,7 +879,6 @@ def g3(obj: Foo[tuple[A]]):
879879
from ty_extensions import Unknown, is_assignable_to, static_assert
880880
from typing_extensions import Any, TypeGuard, TypeIs
881881

882-
# TODO: TypeGuard
883882
static_assert(is_assignable_to(TypeGuard[Unknown], bool))
884883
static_assert(is_assignable_to(TypeIs[Any], bool))
885884
```

crates/ty_python_semantic/resources/mdtest/type_properties/is_disjoint_from.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,6 @@ static_assert(is_disjoint_from(D, TypeOf[C.prop]))
408408
from ty_extensions import static_assert, is_disjoint_from
409409
from typing_extensions import TypeGuard, TypeIs
410410

411-
# TODO: TypeGuard
412411
static_assert(not is_disjoint_from(bool, TypeGuard[str]))
413412
static_assert(not is_disjoint_from(bool, TypeIs[str]))
414413
```

0 commit comments

Comments
 (0)