Hi folks,
I am not sure if this is an issue that this codebase should concern itself with, but here's something strange that I have noticed when using VS Code and Pylance.
When using the from hamcrest import * preamble in my tests, VS Code spits out the following error:

It seems that for whichever reason, Pylance fails to resolve won't resolve nested wildcard imports. When explicitly importing, the submodules, it works as expected.
from hamcrest import *
from hamcrest.core import assert_that
Hi folks,
I am not sure if this is an issue that this codebase should concern itself with, but here's something strange that I have noticed when using VS Code and Pylance.
When using the
from hamcrest import *preamble in my tests, VS Code spits out the following error:It seems that for whichever reason, Pylance fails to resolve won't resolve nested wildcard imports. When explicitly importing, the submodules, it works as expected.