If I write this code:
import math
math.abcdef()
where clearly the method abcdef() does not exist in the imported math module, why doesn't visual studio code show an error?
Is there a way to force vscode to check that the called method exists in the imported module?



