Skip to content

Commit 9b50656

Browse files
committed
Manual fix for linter
1 parent 84b187a commit 9b50656

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lazy_loader/tests/test_lazy_loader.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def test_lazy_import_subpackages():
3535
with pytest.warns(RuntimeWarning):
3636
hp = lazy.load("html.parser")
3737
assert "html" in sys.modules
38-
assert type(sys.modules["html"]) == type(pytest)
38+
assert type(sys.modules["html"]) is type(pytest)
3939
assert isinstance(hp, importlib.util._LazyModule)
4040
assert "html.parser" in sys.modules
4141
assert sys.modules["html.parser"] == hp

0 commit comments

Comments
 (0)