- First, I installed the static analysis tool mypy on the system.
- Then, I downloaded the zip file of the python project from GitHub.
Error: Cannot find implementation or library stub for module named "matplotlib.image" -> It means the image named matplotlib is not found in the folder.
Error: Source file found twice under different module names: "viz" and "utility.viz" -> Above two files are found 2 times in the folder. So, it is generating redundancy.
Error: Unsupported operand types for < ("str" and "int") -> comparison between two different data types string and integer.
Error: No overload variant of "getitem" of "list" matches argument type "str" -> Call Overload
Error: Too many arguments for "fizzbuzz"
Error: Missing positional argument "max_num" in call to "fizzbuzz" -> Function definition has one argument. But no argument is passed to it while calling it.
-> string is not written in double inverted commas.