E4005 Names Errors

Names

module '%s' has no function named '%s'

When this occurs

`math.nonexistent()`

Example error message

error[E4005]: 'bar' not found in module 'math'

How to fix

Check that the function or constant exists in the module. Verify the name spelling.

Related errors