Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit cc9518d

Browse filesBrowse files
authored
fix cov (#831)
1 parent d44ab8b commit cc9518d
Copy full SHA for cc9518d

File tree

Expand file treeCollapse file tree

1 file changed

+2
-2
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+2
-2
lines changed

‎src/idom/core/types.py

Copy file name to clipboardExpand all lines: src/idom/core/types.py
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@
2828

2929
if TYPE_CHECKING or sys.version_info < (3, 9) or sys.version_info >= (3, 11):
3030

31-
class State(NamedTuple, Generic[_Type]): # pragma: no cover
31+
class State(NamedTuple, Generic[_Type]):
3232
value: _Type
3333
set_value: Callable[[_Type | Callable[[_Type], _Type]], None]
3434

35-
else:
35+
else: # pragma: no cover
3636
State = namedtuple("State", ("value", "set_value"))
3737

3838

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.