0

I use PyCharm but I don't know why it does not recognize methods via dot operator? I don't see the list method when I hit dot of an object especially from classes that I imported (I see few but not all of them, sometimes none!!). Is there something in the Setting I should activate?

bad_coder
  • 11,289
  • 20
  • 44
  • 72
Kristofer
  • 1,457
  • 2
  • 19
  • 27

1 Answers1

2

The main setting for listing methods for a class is the Autopopup code completion which it can be found under Settings -> Code Completion per the image below:

pycharm settings

Make sure that this setting is selected.

If this is already selected then probably your issue is caused because Pydev doesn't recognize the type of the variable, per the discussion here.

Community
  • 1
  • 1
afxentios
  • 2,502
  • 2
  • 21
  • 24