Skip to content

Commit 7443fad

Browse files
committed
Fix linter issues
1 parent febda01 commit 7443fad

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

python-unittest/calculations.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import math
21
from collections import Counter
32

43

python-unittest/skip_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def test_using_calendar_constants(self):
1717
def test_windows_support(self):
1818
from ctypes import WinDLL, windll
1919

20-
self.assertTrue(type(windll.kernel32) == WinDLL)
20+
self.assertIsInstance(windll.kernel32, WinDLL)
2121

2222

2323
if __name__ == "__main__":

0 commit comments

Comments
 (0)