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 febda01 commit 7443fadCopy full SHA for 7443fad
python-unittest/calculations.py
@@ -1,4 +1,3 @@
1
-import math
2
from collections import Counter
3
4
python-unittest/skip_tests.py
@@ -17,7 +17,7 @@ def test_using_calendar_constants(self):
17
def test_windows_support(self):
18
from ctypes import WinDLL, windll
19
20
- self.assertTrue(type(windll.kernel32) == WinDLL)
+ self.assertIsInstance(windll.kernel32, WinDLL)
21
22
23
if __name__ == "__main__":
0 commit comments