Skip to content

Commit 65058c9

Browse files
committed
remove no-cover
1 parent cf6b2d2 commit 65058c9

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

core/src/toga/style/pack.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -135,8 +135,7 @@ def __get__(self, obj, objtype=None):
135135
return super().__get__(obj)
136136

137137
def __set__(self, obj, value):
138-
# This won't be executed until @dataclass is added
139-
if value is self: # pragma: no cover
138+
if value is self:
140139
# This happens during autogenerated dataclass __init__ when no value is
141140
# supplied.
142141
return

0 commit comments

Comments
 (0)