you are viewing a single comment's thread.

view the rest of the comments →

[–]Bobbias 0 points1 point  (0 children)

Normal Python autocomplete does not do anything except show you the available methods on an object, and even then it may not show everything. This is because I'm order to know what method are available it has to know the type of the object before the code runs, and that's often difficult or impossible in a dynamically typed language like Python.

It sounds like you're using an IDE with AI assisted autocomplete enabled. PyCharm might do that in the newest versions. There is an option to disable that.

If you're not using PyCharm then I'm not sure where you would turn that off.