Warning: `Possible method call error`

Hi, I am new to Julia in the VS Code, does someone know how to get rid of this annoying warning? The code is fully working by the way.

image

The only way to get rid of this class of false positives is to turn the feature completely off in VSC’s settings e.g., add the following line to your settings.json:

"julia.lint.call": false,

2 Likes

Thanks! @piechologist