Skip to content

Commit d9c83c0

Browse files
Silence ruff warning in test
1 parent 0774aec commit d9c83c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test_typing_extensions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6813,7 +6813,7 @@ class G(type(Unpack[Ts])): pass
68136813
r'Cannot subclass typing\.Unpack'):
68146814
class H(Unpack): pass
68156815
with self.assertRaisesRegex(TypeError, r'Cannot subclass typing.Unpack\[Ts\]'):
6816-
class I(*Ts): pass
6816+
class I(*Ts): pass # noqa: E742
68176817
with self.assertRaisesRegex(TypeError, r'Cannot subclass typing.Unpack\[Ts\]'):
68186818
class J(Unpack[Ts]): pass
68196819

0 commit comments

Comments
 (0)