We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dbcd9e2 commit 4c17b2fCopy full SHA for 4c17b2f
test/font_test.py
@@ -876,7 +876,7 @@ def test_font_method_should_raise_exception_after_quit(self):
876
("set_underline", (True,)),
877
("size", ("any Text",)),
878
]
879
- skip_methods = set(("get_strikethrough", "set_strikethrough"))
+ skip_methods = {"get_strikethrough", "set_strikethrough"}
880
else:
881
methods = [
882
("get_height", tuple()),
@@ -972,7 +972,7 @@ def test_font_property_should_raise_exception_after_quit(self):
972
("italic", True),
973
("resolution", None),
974
975
- skip_properties = set(("strikethrough",))
+ skip_properties = {"strikethrough"}
976
977
properties = [
978
("name", None),
0 commit comments